@charset "UTF-8";
/*=================================================
  풀아치덴탈테크놀로지 리브랜딩 스타일시트
  - 브랜드 컬러: 로고 블루(#2c55a5) / 포인트 그린(#92bf49)
  - 폰트: Pretendard Variable (본문) / Paperlogy (디스플레이)
=================================================*/
/* 웹폰트 도착 전 대체 폰트(맑은 고딕)의 폭·높이를 웹폰트에 맞춰 레이아웃 밀림(CLS)을 막는다 */
@font-face {
  font-family: "Pretendard Fallback";
  src: local("Malgun Gothic"), local("MalgunGothic");
  font-weight: 100 500;
  size-adjust: 85.6%;
  ascent-override: 111%;
  descent-override: 28%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Pretendard Fallback";
  src: local("Malgun Gothic Bold"), local("MalgunGothicBold");
  font-weight: 600 900;
  size-adjust: 85.6%;
  ascent-override: 111%;
  descent-override: 28%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Paperozi Fallback";
  src: local("Malgun Gothic Bold"), local("MalgunGothicBold");
  font-weight: 100 900;
  size-adjust: 96.7%;
  ascent-override: 120%;
  descent-override: 30%;
  line-gap-override: 0%;
}
:root {
  --blue: #2c55a5;
  --blue-deep: #1b3a77;
  --navy: #0d1a30;
  --green: #92bf49;
  --ink: #1a2233;
  --gray: #5c6b82;
  --gray-light: #9aa7b8;
  --line: #e3e8f0;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(19, 38, 74, 0.08);
  --font-display: "Paperozi", "Paperozi Fallback", "Pretendard Variable", "Pretendard Fallback", "Apple SD Gothic Neo", sans-serif;
}

/* ---------- reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
body {
  margin: 0;
  font-family: "Pretendard Variable", "Pretendard Fallback", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  word-break: keep-all;
  min-width: 320px;
}
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
dl,
dd {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
details summary {
  cursor: pointer;
  list-style: none;
}
details summary::-webkit-details-marker {
  display: none;
}

.a11y-hidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
}
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 2000;
  padding: 10px 18px;
  background: var(--blue);
  color: #fff;
  border-radius: 0 0 10px 10px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- 공통 섹션 헤더 ---------- */
section {
  padding: clamp(72px, 9vw, 120px) 0;
}
.sec-head {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.eyebrow {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 7px;
  vertical-align: super;
  border-radius: 50%;
  border: 2px solid var(--green);
}
.sec-head h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.sec-head .lead {
  margin-top: 18px;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--gray);
  line-height: 1.75;
}
.sec-head .lead strong {
  color: var(--ink);
}

/* ---------- 스크롤 리빌 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- 헤더 / 내비게이션 ---------- */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
#header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(19, 38, 74, 0.06);
}
#header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
#header .logo img {
  height: 44px;
  width: auto;
}
#gnb ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
#gnb a {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s;
}
#gnb a:hover {
  color: var(--blue);
}
#gnb .nav-cta {
  padding: 9px 18px;
  border-radius: 50px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}
#gnb .nav-cta:hover {
  background: var(--blue-deep);
  color: #fff;
}
@media (max-width: 1200px) {
  #gnb ul {
    gap: 16px;
  }
  #gnb a {
    font-size: 14.5px;
  }
  #header .logo img {
    height: 40px;
  }
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle span {
  top: 21px;
}
.nav-toggle span::before {
  left: 0;
  top: -7px;
}
.nav-toggle span::after {
  left: 0;
  top: 7px;
}
.nav-open .nav-toggle span {
  background: transparent;
}
.nav-open .nav-toggle span::before {
  transform: translateY(7px) rotate(45deg);
}
.nav-open .nav-toggle span::after {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 960px) {
  #header {
    height: 60px;
  }
  html {
    scroll-padding-top: 70px;
  }
  #header .logo img {
    height: 36px;
  }
  .nav-toggle {
    display: block;
  }
  #gnb {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(19, 38, 74, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  }
  .nav-open #gnb {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  #gnb ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 0;
  }
  #gnb li a {
    display: block;
    padding: 13px 28px;
    font-size: 16px;
  }
  #gnb .nav-cta {
    margin: 10px 24px 14px;
    text-align: center;
    border-radius: 12px;
  }
}

/* ---------- 히어로 ---------- */
#hero {
  position: relative;
  margin-top: 72px;
  padding: clamp(90px, 11vw, 150px) 0 clamp(80px, 10vw, 130px);
  background:
    linear-gradient(100deg, rgba(6, 12, 24, 0.95) 44%, rgba(6, 12, 24, 0.7) 64%, rgba(6, 12, 24, 0.26) 86%, rgba(6, 12, 24, 0.16)),
    var(--navy) url("../imgs/hero_building.webp?v=20260916") no-repeat 100% 72% / cover;
  color: #fff;
}
@media (max-width: 960px) {
  #hero {
    margin-top: 60px;
    background:
      linear-gradient(180deg, rgba(6, 12, 24, 0.9), rgba(6, 12, 24, 0.72)),
      var(--navy) url("../imgs/hero_building_m.webp?v=20260916") no-repeat center bottom / cover;
  }
}
#hero .eyebrow {
  color: #a9c4f2;
}
#hero h1 {
  max-width: 640px;
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
}
#hero h1 .hl {
  color: #b9d97e;
}
#hero .hero-lead {
  max-width: 560px;
  margin-top: 22px;
  font-size: clamp(15px, 1.9vw, 18.5px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}
#hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16.5px;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: #3763bd;
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
#hero .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  margin-top: clamp(48px, 6vw, 76px);
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
#hero .hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  color: #fff;
}
#hero .hero-stats strong em {
  font-style: normal;
  color: var(--green);
}
#hero .hero-stats span {
  display: block;
  margin-top: 6px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- 문제 제기 ---------- */
#problem {
  background: var(--bg-soft);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.problem-grid figure {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.problem-grid figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.problem-grid figcaption {
  padding: 16px 22px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--gray);
}
.problem-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.problem-points li {
  padding: 26px 26px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.problem-points .num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}
.problem-points strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 700;
}
.problem-points p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--gray);
}
@media (max-width: 720px) {
  .problem-grid,
  .problem-points {
    grid-template-columns: 1fr;
  }
}

/* ---------- 바이트코어 ---------- */
#bitecore .bitecore-visual {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  margin-bottom: clamp(44px, 6vw, 64px);
}
#bitecore .bitecore-visual img {
  border-radius: var(--radius);
}
#bitecore .bitecore-copy .define-lead {
  font-size: clamp(17px, 2.1vw, 20px);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: -0.01em;
}
#bitecore .bitecore-copy .define-lead b {
  font-weight: 800;
  color: var(--blue);
}
#bitecore .bitecore-copy mark {
  background: linear-gradient(transparent 64%, rgba(146, 191, 73, 0.35) 64%);
  color: inherit;
  font-weight: 700;
  padding: 0 1px;
}
#bitecore .spec-row {
  display: flex;
  margin-top: 26px;
  border-top: 2px solid var(--ink);
}
#bitecore .spec-row li {
  flex: 1;
  padding: 13px 14px 0 0;
}
#bitecore .spec-row li + li {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}
#bitecore .spec-row span {
  display: block;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray-light);
}
#bitecore .spec-row strong {
  display: block;
  margin-top: 5px;
  font-size: 17.5px;
  font-weight: 800;
}
#bitecore .bitecore-copy .sub {
  margin-top: 24px;
  font-size: 15.5px;
  color: var(--gray);
  line-height: 1.8;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.process-list figure {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.process-list figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.process-list .step {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 13px;
  border-radius: 50px;
  background: rgba(13, 26, 48, 0.82);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.process-list figcaption {
  padding: 16px 20px;
}
.process-list figcaption strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
}
.process-list figcaption span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--gray);
}
.merit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 26px;
}
.merit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--bg-soft);
  border-radius: 14px;
  font-size: 15.5px;
  line-height: 1.6;
}
.merit-list li::before {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4'%3E%3Cpath d='M4 12l6 6L20 6'/%3E%3C/svg%3E") no-repeat center;
}
.merit-list b {
  color: var(--blue);
}
@media (max-width: 960px) {
  #bitecore .bitecore-visual {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .process-list,
  .merit-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- 특허 ---------- */
#patents {
  background: var(--navy);
  color: #fff;
}
#patents .eyebrow {
  color: #a9c4f2;
}
#patents .sec-head .lead {
  color: rgba(255, 255, 255, 0.7);
}
#patents .sec-head .lead strong {
  color: #b9d97e;
}
.patent-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.patent-list figure {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.patent-list img {
  width: 100%;
  border-radius: 8px;
}
.patent-list figcaption {
  margin-top: 16px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
}
.patent-list figcaption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  color: #fff;
}
@media (max-width: 720px) {
  .patent-list {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ---------- 제작 사례 ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-grid figure {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.case-grid figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(19, 38, 74, 0.13);
}
.case-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.case-grid figcaption {
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 700;
}
.case-grid figcaption span {
  display: block;
  margin-top: 3px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--gray);
}
.disclaimer {
  margin-top: 36px;
  padding: 18px 22px;
  background: var(--bg-soft);
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-light);
}
@media (max-width: 960px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- 장비 ---------- */
#equipment {
  background: var(--bg-soft);
}
.equip-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.equip-list > li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.equip-list img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 14px;
  background: var(--bg-soft);
}
.equip-list .equip-body {
  padding: 20px 22px 22px;
}
.equip-list h3 {
  font-size: 19px;
  font-weight: 800;
}
.equip-list .summary {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
}
.equip-list details {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.equip-list details summary {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
}
.equip-list details summary::after {
  content: " +";
  color: var(--green);
}
.equip-list details[open] summary::after {
  content: " –";
}
.equip-list details p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
}
@media (max-width: 960px) {
  .equip-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .equip-list {
    grid-template-columns: 1fr;
  }
}

/* ---------- 협업 치과 ---------- */
.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.network-grid figure {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.network-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.network-grid figure:hover img {
  transform: scale(1.05);
}
.network-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 12px 13px;
  background: linear-gradient(transparent, rgba(13, 26, 48, 0.88));
  color: #fff;
  font-size: 15.5px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.01em;
}
@media (max-width: 960px) {
  .network-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .network-grid figcaption {
    font-size: 14px;
    padding: 24px 10px 10px;
  }
}
.network-noti {
  max-width: 640px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-light);
}

/* ---------- FAQ ---------- */
#faq {
  background: var(--bg-soft);
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-list details[open] {
  box-shadow: var(--shadow);
}
.faq-list summary {
  position: relative;
  padding: 20px 56px 20px 24px;
  font-size: clamp(15.5px, 1.9vw, 17.5px);
  font-weight: 700;
  line-height: 1.5;
}
.faq-list summary .q {
  color: var(--blue);
  font-family: var(--font-display);
  margin-right: 10px;
}
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s;
}
.faq-list details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}
.faq-list .a {
  padding: 0 24px 22px;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--gray);
}
.faq-list .a strong {
  color: var(--ink);
}
.faq-list .a a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.faq-list .a a:hover {
  color: var(--blue-deep);
}

/* ---------- 블로그 (섹션 틀 — 카드 스타일은 blog.css) ---------- */
#sec_blog {
  background: #fff;
}

/* ---------- 오시는 길 ---------- */
#location {
  background: var(--bg-soft);
}
.location-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: stretch;
}
#map {
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #e8edf5;
  overflow: hidden;
}
.map-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  min-height: inherit;
  padding: 30px;
  text-align: center;
}
.map-fallback strong {
  font-size: 19px;
  font-weight: 800;
}
.map-fallback p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}
.map-fallback .btn {
  margin-top: 8px;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.location-info dt {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
}
.location-info dd {
  margin: 4px 0 14px;
  font-size: 16px;
  line-height: 1.6;
}
.location-info dd a:hover {
  color: var(--blue);
}
.location-info .btn {
  margin-top: auto;
  background: var(--blue);
  color: #fff;
}
.location-info .btn:hover {
  background: var(--blue-deep);
}
@media (max-width: 960px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  #map {
    min-height: 320px;
  }
}

/* ---------- 푸터 ---------- */
#footer {
  padding: 56px 0 130px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.8;
}
#footer .footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}
#footer .footer-brand em {
  font-style: normal;
  color: var(--green);
}
#footer ul.info {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
}
#footer a:hover {
  color: #fff;
}
#footer .copy {
  margin-top: 20px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- 고정 버튼 ---------- */
.btn-fixs {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn-fixs a {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 8px 22px rgba(13, 26, 48, 0.28);
  transition: transform 0.2s;
}
.btn-fixs a:hover {
  transform: translateY(-3px);
}
.btn-fixs a.btn1 {
  background-image: url("../imgs/btn_fix1.png");
}
.btn-fixs a.btn2 {
  background-image: url("../imgs/btn_fix2.png");
}
.btn-fixs a.btn3 {
  background-image: url("../imgs/btn_fix3.png");
}
@media (max-width: 960px) {
  .btn-fixs {
    bottom: 16px;
    right: 12px;
  }
  .btn-fixs a {
    width: 50px;
    height: 50px;
    font-size: 13.5px;
    border-radius: 12px;
  }
}
