/* ============================================================
   은계연세365의원 (구 은계이엠365의원) — AXONMED draft
   Theme: light-locked (cool porcelain + Yonsei royal blue)
   Shape rule: containers 18px / interactive pill / images 18px
   ============================================================ */

:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --ink: #16202e;
  --muted: #5b6673;
  --line: #e3e8ef;
  --accent: #2f56a6;
  --accent-deep: #22417f;
  --accent-soft: #e7edf8;
  --accent-ink: #152647;
  --radius: 18px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, "Hiragino Sans", "PingFang SC", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.98); }
.btn-primary {
  background: var(--accent);
  color: #f4faf8;
  box-shadow: 0 8px 24px rgba(47, 86, 166, 0.24);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }
.btn-nav { padding: 10px 20px; font-size: 14px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 248, 247, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--accent-ink); }
.brand-mark { width: 30px; height: 30px; color: var(--accent); }
.brand-name { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--accent-deep); }
.nav-right { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang-btn {
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.lang-btn:hover { color: var(--accent-deep); }
.lang-btn.is-active { background: var(--accent); color: #f4faf8; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 88px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 56px;
  align-items: center;
}
.hero-title {
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.035em;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  padding-bottom: 4px;
}
.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  color: var(--muted);
  max-width: 46ch;
}
.hero-cta { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(23, 32, 29, 0.14);
  transform: rotate(1.2deg);
}
.hero-media img { width: 100%; height: 520px; object-fit: cover; }

/* ---------- Info strip ---------- */
.info-strip {
  background: var(--surface);
  border-block: 1px solid var(--line);
  padding: 28px 0;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.info-item { display: flex; flex-direction: column; gap: 4px; }
.info-label { font-size: 13px; font-weight: 600; color: var(--accent); }
.info-value { font-size: 15px; font-weight: 500; }

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section-head { max-width: 60ch; margin-bottom: 52px; }
.section-head h2, .doctor-copy h2, .global-inner h2, .contact-copy h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.section-head p { margin-top: 14px; font-size: 17px; color: var(--muted); }

/* ---------- Bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.bento-cell {
  position: relative;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.bento-cell:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(23, 32, 29, 0.1); }
.bento-cell h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.bento-cell p { margin-top: 8px; font-size: 14.5px; color: var(--muted); line-height: 1.55; }

.cell-large { grid-column: span 4; grid-row: span 2; padding: 0; border: 0; }
.cell-large img, .cell-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bento-overlay {
  position: relative;
  z-index: 1;
  padding: 28px;
  background: linear-gradient(to top, rgba(12, 22, 19, 0.82) 0%, rgba(12, 22, 19, 0.35) 55%, transparent 100%);
  margin-top: auto;
}
.bento-overlay h3 { color: #fdfefe; }
.bento-overlay p { color: rgba(244, 250, 248, 0.85); }

.cell-tint { grid-column: span 2; background: var(--accent-soft); border-color: transparent; }
.cell-tint h3 { color: var(--accent-ink); }
.bento-cell:nth-child(3) { grid-column: span 2; }
.cell-photo { grid-column: span 3; padding: 0; border: 0; }
.cell-dark { grid-column: span 3; background: var(--accent-ink); border-color: transparent; }
.cell-dark h3 { color: #f4faf8; }
.cell-dark p { color: rgba(227, 239, 235, 0.75); }

/* ---------- Doctor ---------- */
.section-doctor { background: var(--surface); border-block: 1px solid var(--line); }
.doctor-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}
.doctor-media { border-radius: var(--radius); overflow: hidden; }
.doctor-media img { width: 100%; height: 560px; object-fit: cover; }
.doctor-name { margin-top: 24px; font-size: 20px; }
.doctor-role {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 12px;
  border-radius: 999px;
  vertical-align: 2px;
}
.doctor-bio { margin-top: 18px; font-size: 16.5px; color: var(--muted); max-width: 58ch; }
.doctor-creds { margin-top: 26px; display: grid; gap: 10px; }
.doctor-creds li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  font-weight: 500;
}
.doctor-creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}
.doctor-note {
  margin-top: 26px;
  font-size: 13.5px;
  color: var(--muted);
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 860px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease);
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-size: 16.5px;
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: none;
  width: 14px;
  height: 14px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.faq-icon::before { left: 0; top: 6px; width: 14px; height: 2px; }
.faq-icon::after { left: 6px; top: 0; width: 2px; height: 14px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-item > p {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 68ch;
}

/* ---------- Global care ---------- */
.section-global { background: var(--accent-ink); }
.global-inner h2 { color: #f4faf8; }
.global-inner > p { margin-top: 14px; font-size: 17px; color: rgba(227, 239, 235, 0.72); max-width: 52ch; }
.global-cols {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.global-col { padding: 0 32px; border-left: 1px solid rgba(227, 239, 235, 0.16); }
.global-col:first-child { padding-left: 0; border-left: 0; }
.global-col h3 { color: #e3efeb; font-size: 17px; font-weight: 700; }
.global-col p { margin-top: 8px; color: rgba(227, 239, 235, 0.62); font-size: 14.5px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 64px;
  align-items: center;
}
.contact-list { margin: 36px 0 40px; display: grid; gap: 22px; }
.contact-list div { display: grid; grid-template-columns: 92px 1fr; gap: 12px; }
.contact-list dt { font-size: 14px; font-weight: 700; color: var(--accent); padding-top: 2px; }
.contact-list dd { font-size: 15.5px; color: var(--ink); }
.contact-list dd a { font-weight: 600; }
.contact-media { border-radius: var(--radius); overflow: hidden; }
.contact-media img { width: 100%; height: 440px; object-fit: cover; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 40px 0 56px; }
.footer-inner p { font-size: 13.5px; color: var(--muted); }
.footer-legal { margin-top: 8px; font-size: 12.5px; opacity: 0.8; }

/* ---------- Reveal motion ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .bento-cell { transition: none; }
}

/* ---------- Language fade ---------- */
body.lang-fading [data-i18n],
body.lang-fading [data-i18n-html] { opacity: 0.25; transition: opacity 0.18s ease; }
[data-i18n], [data-i18n-html] { transition: opacity 0.18s ease; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { transform: none; }
  .hero-media img { height: 400px; }
  .doctor-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .doctor-media img { height: 420px; }
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .cell-large { grid-column: span 2; }
  .cell-tint, .bento-cell:nth-child(3), .cell-photo, .cell-dark { grid-column: span 1; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .brand-name { display: none; }
  .btn-nav { display: none; }
  .info-grid { grid-template-columns: 1fr; gap: 18px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: minmax(200px, auto); }
  .cell-large, .cell-tint, .bento-cell:nth-child(3), .cell-photo, .cell-dark { grid-column: span 1; }
  .global-cols { grid-template-columns: 1fr; gap: 28px; }
  .global-col { padding: 0; border-left: 0; }
  .contact-list div { grid-template-columns: 1fr; gap: 4px; }
}

/* nav overflow guard */
.nav-links a { white-space: nowrap; }
@media (max-width: 1180px) { .nav-links { display: none; } }


/* ---------- Facility gallery ---------- */
.facility-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.facility-grid figure { margin: 0; }
.facility-grid img { width: 100%; height: 250px; object-fit: cover; border-radius: var(--radius); }
.facility-grid figcaption { margin-top: 12px; }
.fc-t { display: block; font-size: 14.5px; font-weight: 700; }
.fc-d { display: block; font-size: 13.5px; color: var(--muted); margin-top: 2px; }

/* ---------- Global care band ---------- */
.section-gcare { background: var(--accent-soft); }
.gcare-head { max-width: 60ch; margin-bottom: 48px; }
.gcare-head h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.2; }
.gcare-head p { margin-top: 14px; font-size: 17px; color: var(--muted); }
.gcare-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.gcare-col h3 { font-size: 17px; font-weight: 700; color: var(--accent); }
.gcare-col p { margin-top: 8px; font-size: 14.5px; color: var(--muted); line-height: 1.6; }

@media (max-width: 1024px) {
  .facility-grid { grid-template-columns: 1fr; }
  .facility-grid img { height: 220px; }
  .gcare-cols { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Care programs ---------- */
.programs { display: grid; grid-template-columns: 5fr 3.5fr 3.5fr; gap: 16px; }
.prog-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; }
.prog-featured { background: var(--accent-soft); border-color: transparent; }
.prog-card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.prog-featured h3 { color: var(--accent-ink); }
.prog-card p { margin-top: 10px; font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.prog-tag { margin-top: auto; padding-top: 18px; font-size: 13px; font-weight: 700; color: var(--accent); }
@media (max-width: 1024px) {
  .programs { grid-template-columns: 1fr 1fr; }
  .prog-featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  .programs { grid-template-columns: 1fr; }
  .prog-featured { grid-column: span 1; }
}

/* ---------- Equipment cards ---------- */
.equip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.equip-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.equip-card .eq-num { display: block; font-size: 13px; font-weight: 800; color: var(--accent); margin-bottom: 12px; letter-spacing: 0.02em; }
.equip-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; }
.equip-card p { margin-top: 8px; font-size: 14px; color: var(--muted); line-height: 1.6; }
.equip-note { margin-top: 20px; font-size: 13.5px; color: var(--muted); }

/* ---------- Full procedure list ---------- */
.section-proc { background: var(--surface); border-block: 1px solid var(--line); }
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.proc-box {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.proc-box h3 { font-size: 16.5px; font-weight: 700; color: var(--accent-deep); letter-spacing: -0.02em; }
.proc-box ul { margin-top: 14px; display: grid; gap: 8px; }
.proc-box li { position: relative; padding-left: 18px; font-size: 14.5px; color: var(--ink); }
.proc-box li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 2px; border-radius: 2px; background: var(--accent);
}

@media (max-width: 1024px) {
  .equip-grid { grid-template-columns: 1fr 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .equip-grid, .proc-grid { grid-template-columns: 1fr; }
}

/* ---------- Contact map ---------- */
.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.contact-map iframe { display: block; width: 100%; height: 460px; border: 0; }
.map-links { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.map-link {
  display: inline-flex; align-items: center;
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface);
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.map-link:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-1px); }
@media (max-width: 1024px) { .contact-map iframe { height: 360px; } }

/* ---------- Signature card media ---------- */
.prog-media {
  margin: -30px -30px 20px;
  height: 175px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.prog-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Procedure detail modal ---------- */
.proc-box li { cursor: pointer; transition: color 0.2s var(--ease); }
.proc-box li:hover { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
.bento-cell { cursor: pointer; }

#proc-modal { position: fixed; inset: 0; z-index: 100; display: none; }
#proc-modal.open { display: block; }
.pm-backdrop { position: absolute; inset: 0; background: rgba(37, 29, 31, 0.62); }
.pm-panel {
  position: relative;
  max-width: 860px;
  margin: 4vh auto;
  height: 92vh;
  background: var(--surface);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}
.pm-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 24px; border-bottom: 1px solid var(--line);
}
.pm-title { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; }
.pm-close {
  border: 0; background: var(--accent-soft); color: var(--accent-deep);
  width: 34px; height: 34px; border-radius: 999px; cursor: pointer;
  font-size: 14px; font-weight: 700; line-height: 1;
}
.pm-close:hover { background: var(--accent); color: #fff; }
.pm-body { flex: 1; overflow-y: auto; background: #ffffff; }
.pm-body img { width: 100%; display: block; }
.pm-empty { padding: 48px 24px; text-align: center; color: var(--muted); font-size: 15px; }
.pm-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 24px; border-top: 1px solid var(--line); font-size: 13px;
}
.pm-note { color: var(--muted); }
.pm-orig { font-weight: 700; color: var(--accent-deep); white-space: nowrap; }
.pm-orig:hover { text-decoration: underline; }
body.modal-open { overflow: hidden; }
@media (max-width: 640px) {
  .pm-panel { margin: 0; height: 100dvh; border-radius: 0; max-width: none; }
}

/* ---------- Procedure modal text intro ---------- */
.pm-intro { padding: 24px; border-bottom: 1px solid var(--line); background: var(--bg); }
.pm-def { font-size: 15.5px; font-weight: 600; line-height: 1.65; }
.pm-pts { margin-top: 12px; display: grid; gap: 7px; }
.pm-pts li { position: relative; padding-left: 18px; font-size: 14px; color: var(--muted); }
.pm-pts li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 2px; border-radius: 2px; background: var(--accent); }
.pm-disc { margin-top: 14px; font-size: 12.5px; color: var(--muted); opacity: 0.85; }
.pm-imgs-h { padding: 18px 24px 10px; font-size: 13px; font-weight: 800; color: var(--accent-deep); letter-spacing: 0.01em; }

/* ---------- 개명 안내 배너 ---------- */
.rename-banner {
  background: var(--accent-ink);
  color: #eef3fb;
  text-align: center;
  font-size: 13.5px;
  padding: 10px 16px;
}
.rename-banner strong { color: #a9c4ee; font-weight: 700; }

/* ---------- 비급여 페이지 ---------- */
.nonpay-wrap { max-width: 900px; margin: 0 auto; padding: 64px 24px 96px; }
.nonpay-wrap h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.03em; }
.nonpay-notice {
  margin-top: 22px; background: var(--accent-soft); border-radius: var(--radius);
  padding: 22px 26px; font-size: 14.5px; line-height: 1.7; color: var(--accent-ink);
}
.nonpay-wrap h2 { margin-top: 44px; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.np-table { width: 100%; border-collapse: collapse; margin-top: 14px; background: var(--surface); border-radius: 12px; overflow: hidden; }
.np-table th, .np-table td { border: 1px solid var(--line); padding: 11px 14px; font-size: 14px; text-align: left; }
.np-table th { background: var(--accent-soft); color: var(--accent-ink); font-weight: 700; font-size: 13.5px; }
.np-table td.num { text-align: right; font-variant-numeric: tabular-nums; }
.np-pending { color: var(--muted); }
.nonpay-foot { margin-top: 36px; font-size: 13px; color: var(--muted); line-height: 1.7; }
.np-badge {
  display: inline-block; margin-left: 8px; font-size: 11.5px; font-weight: 700;
  background: #fdf1e3; color: #9a6b25; border-radius: 999px; padding: 3px 10px; vertical-align: 3px;
}
@media (max-width: 640px) { .np-table th, .np-table td { padding: 9px 8px; font-size: 12.5px; } }
/* ---------- Brand logo (연세 씰 + 워드마크) ---------- */
.brand-logo { height: 42px; width: auto; display: block; }
@media (max-width: 640px) { .brand-logo { height: 32px; } }

/* ---------- 법정 고지 링크 (푸터) ----------
   비급여 고지는 의무이지만 마케팅 동선에는 올리지 않는다. */
.footer-links { margin-top: 12px; }
.footer-links a {
  font-size: 12.5px; color: var(--muted); opacity: .8;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .2s var(--ease), opacity .2s var(--ease);
}
.footer-links a:hover { color: var(--accent-deep); opacity: 1; }
