:root {
  --font-body: "Pretendard Variable", Pretendard, -apple-system, sans-serif;
  --font-kr: "Noto Sans KR", "Pretendard Variable", Pretendard, sans-serif;
  --ink: #0f211d;
  --text: #172b26;
  --desc: #33473f;
  --muted: #6c7d76;
  --line: #dbe6e0;
  --bg: #ffffff;
  --bg-soft: #eef4f1;
  --mist: #d8ece3;
  --footer-bg: #0a1815;
  --header-bg: #ffffff;
  --max: 1080px;
  --accent: #0e6f5c;
  --accent-hover: #0a5747;
  --accent-soft: #cfe9dd;
  --radius: 999px;
  --card-radius: 14px;
  --title-display: 800 clamp(34px, 4.4vw, 48px)/1.14 var(--font-body);
  --mid-bold: 700 clamp(22px, 2vw, 27px)/1.3 var(--font-body);
  --mid-regular: 400 17px/1.5 var(--font-body);
  --body-4: 400 15px/1.85 var(--font-body);
  --foot-info: 500 clamp(16px, 1.4vw, 19px)/1.6 var(--font-kr);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font: var(--mid-regular); letter-spacing: -0.01em; color: var(--text); background: var(--bg); word-break: keep-all; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.nowrap-line { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }

/* header */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.94); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); }
.hdr-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.header-logo { text-decoration: none; color: inherit; }
.logo-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; }
.logo-company { font: 500 11.5px/1.3 var(--font-kr); color: var(--muted); letter-spacing: -0.01em; }
.logo-keyword { font: 800 24px/1 var(--font-body); color: var(--ink); letter-spacing: -0.02em; }
nav { display: flex; gap: 28px; }
nav a { font: 600 15.5px/1.25 var(--font-body); color: var(--desc); position: relative; padding-bottom: 3px; }
nav a:hover { color: var(--accent); }
.hdr-right { display: flex; align-items: center; gap: 20px; }
.hdr-tel { display: inline-flex; align-items: center; gap: 8px; font: 700 14.5px/1.25 var(--font-body); color: #fff; background: var(--accent); padding: 11px 22px; border-radius: var(--radius); transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.hdr-tel svg { width: 16px; height: 16px; flex-shrink: 0; }
.hdr-tel:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(14,111,92,0.32); }

/* main index hero — photo full-bleed, text pinned left-center behind angled dark-teal panel */
.hero-main { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; background: var(--ink); }
.hero-main .hero-bg { position: absolute; inset: 0; }
.hero-main .hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroDrift 22s ease-in-out infinite alternate; }
@keyframes heroDrift { from { transform: scale(1.05) translateX(0); } to { transform: scale(1.16) translateX(-1.5%); } }
.hero-main .hero-panel { position: absolute; inset: 0; width: min(640px, 62%); background: linear-gradient(120deg, rgba(10,24,21,0.94) 0%, rgba(10,24,21,0.86) 78%, rgba(10,24,21,0) 100%); clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%); }
.hero-main .hero-inner { position: relative; z-index: 1; padding: 120px 0 60px; width: 100%; }
.hero-main .hero-inner-in { max-width: 480px; }
.hero-eyebrow { font: 700 14px/1.4 var(--font-body); color: var(--accent-soft); letter-spacing: 0.06em; margin-bottom: 16px; }
.hero-main h1 { font: 800 clamp(34px, 4.6vw, 54px)/1.14 var(--font-body); letter-spacing: -0.02em; color: #fff; margin-bottom: 18px; }
.hero-lead { font: 600 clamp(15px, 1.6vw, 18px)/1.5 var(--font-body); color: rgba(255,255,255,0.82); margin-bottom: 30px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-fill { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 0 30px; background: var(--accent); color: #fff; font: 700 16px/1 var(--font-body); border: 2px solid var(--accent); border-radius: var(--radius); transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn-fill svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn-fill:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(14,111,92,0.35); }
.btn-line { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 28px; border: 2px solid rgba(255,255,255,0.42); color: #fff; font: 600 16px/1.25 var(--font-body); border-radius: var(--radius); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.btn-line:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
@media (max-width: 900px) {
  .hero-main { min-height: 78vh; }
  .hero-main .hero-panel { width: 100%; clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%); background: linear-gradient(180deg, rgba(10,24,21,0.55) 0%, rgba(10,24,21,0.92) 68%); }
  .hero-main .hero-inner { padding: 100px 0 44px; }
  .hero-main .hero-inner-in { max-width: 100%; }
}

/* subpage hero — bright blur overlay, image required */
.page-hero { position: relative; min-height: 38vh; display: flex; align-items: flex-end; padding: 140px 0 48px; overflow: hidden; background: var(--bg-soft); }
.page-hero-plain { border-bottom: 1px solid var(--line); }
.page-hero .hero-bg { position: absolute; inset: 0; }
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.page-hero .hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.44) 100%); }
.page-hero .hero-inner { position: relative; z-index: 1; width: 100%; }
.page-hero h1 { font: 800 clamp(28px, 4vw, 42px)/1.2 var(--font-body); color: var(--ink); text-shadow: 0 2px 18px rgba(255,255,255,0.9); }
.page-hero .hero-eyebrow { color: var(--accent-hover); text-shadow: 0 1px 10px rgba(255,255,255,0.9); }
.page-hero .hero-lead { color: var(--desc); text-shadow: 0 1px 10px rgba(255,255,255,0.85); margin-top: 12px; margin-bottom: 0; }
.page-hero-color { background: linear-gradient(135deg, var(--ink) 0%, var(--accent-hover) 100%); min-height: 32vh; padding: 130px 0 44px; }
.page-hero-color h1 { color: #fff; text-shadow: none; }
.page-hero-color .hero-eyebrow { color: var(--accent-soft); text-shadow: none; }
.page-hero-color .hero-lead { color: rgba(255,255,255,0.82); text-shadow: none; }

/* section common */
section[id] { scroll-margin-top: 68px; }
.sec-head { margin-bottom: 44px; max-width: 640px; }
.sec-label { font: 700 14px/1 var(--font-body); letter-spacing: 0.07em; color: var(--accent-hover); margin-bottom: 12px; }
.sec-title { font: var(--title-display); letter-spacing: -0.02em; color: var(--text); }
.sec-intro { font: var(--body-4); color: var(--desc); margin-top: 14px; }

/* problem / 문제 인식 — two column, no card grid */
#problem { padding: 96px 0; background: var(--bg); }
.problem-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: start; }
.problem-list { list-style: none; display: flex; flex-direction: column; }
.problem-list li { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.problem-list li:first-child { padding-top: 0; }
.problem-mark { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--bg-soft); color: var(--accent-hover); display: flex; align-items: center; justify-content: center; font: 700 14px/1 var(--font-body); }
.problem-list h3 { font: 700 17px/1.4 var(--font-body); color: var(--text); margin-bottom: 6px; }
.problem-list p { font: var(--body-4); color: var(--desc); }
.problem-side { background: var(--bg-soft); border-radius: var(--card-radius); padding: 40px 34px; position: sticky; top: 96px; }
.problem-side h3 { font: 800 22px/1.4 var(--font-body); color: var(--ink); margin-bottom: 14px; }
.problem-side p { font: var(--body-4); color: var(--desc); margin-bottom: 24px; }

/* cases — horizontal scroll strip */
#cases { padding: 96px 0; background: var(--bg-soft); }
.case-scroll { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; margin: 0 -28px; padding-left: 28px; padding-right: 28px; }
.case-scroll::-webkit-scrollbar { height: 6px; }
.case-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.case-card { scroll-snap-align: start; flex: 0 0 300px; display: block; background: #fff; border-radius: var(--card-radius); overflow: hidden; border: 1px solid var(--line); transition: box-shadow .2s, transform .2s; }
.case-card:hover { box-shadow: 0 14px 30px rgba(15,33,29,0.12); transform: translateY(-3px); }
.case-img { aspect-ratio: 4/3; overflow: hidden; background: #dfe4e3; }
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.case-card:hover .case-img img { transform: scale(1.05); }
.case-body { padding: 20px 22px; }
.case-num { font: 600 12px/1 var(--font-body); letter-spacing: 0.08em; color: var(--muted); margin-bottom: 8px; }
.case-title { font: 700 18px/1.3 var(--font-body); color: var(--text); margin-bottom: 6px; }
.case-cap { font: 400 14px/1.6 var(--font-body); color: var(--desc); }
.cases-more { margin-top: 26px; }

/* service — flowing row list, not numbered card grid */
#service { padding: 96px 0; background: var(--bg); }
.svc-rows { display: flex; flex-direction: column; }
.svc-row { display: flex; align-items: flex-start; gap: 26px; padding: 30px 0; border-top: 1px solid var(--line); }
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row svg { width: 40px; height: 40px; color: var(--accent-hover); flex-shrink: 0; margin-top: 2px; }
.svc-row-body h3 { font: 700 19px/1.35 var(--font-body); color: var(--text); margin-bottom: 8px; }
.svc-row-body p { font: var(--body-4); color: var(--desc); max-width: 640px; }

/* process — vertical connected timeline */
.process-line { display: flex; flex-direction: column; margin-top: 56px; }
.process-item { display: flex; gap: 24px; position: relative; padding-bottom: 36px; }
.process-item:last-child { padding-bottom: 0; }
.process-item::before { content: ""; position: absolute; left: 17px; top: 38px; bottom: 0; width: 1px; background: var(--line); }
.process-item:last-child::before { display: none; }
.process-dot { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font: 700 15px/1 var(--font-body); z-index: 1; }
.process-item h4 { font: 700 17px/1.3 var(--font-body); color: var(--text); margin-bottom: 4px; padding-top: 6px; }
.process-item p { font: var(--body-4); color: var(--desc); }

/* guide / info — two column article list */
#guide { padding: 96px 0; background: var(--bg-soft); }
.guide-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 40px; }
.guide-row { display: block; padding: 22px 0; border-bottom: 1px solid var(--line); }
.guide-row-eyebrow { font: 600 12px/1 var(--font-body); letter-spacing: 0.06em; color: var(--muted); margin-bottom: 8px; }
.guide-row h3 { font: 700 17.5px/1.4 var(--font-body); color: var(--text); margin-bottom: 6px; }
.guide-row:hover h3 { color: var(--accent-hover); }
.guide-row p { font: 400 14px/1.7 var(--font-body); color: var(--desc); }

/* faq — chevron accordion */
#faq { padding: 96px 0; background: var(--bg); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; font: 700 17px/1.4 var(--font-body); cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--text); }
.faq-mark { flex-shrink: 0; width: 22px; height: 22px; color: var(--accent); transition: transform .25s ease; }
.faq-item.open .faq-mark { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 0 24px; font: var(--body-4); color: var(--desc); max-width: 700px; }

/* cta band */
.cta-band { background: linear-gradient(120deg, var(--ink) 0%, var(--accent-hover) 100%); padding: 76px 0; text-align: left; }
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { font: 800 clamp(24px, 2.6vw, 32px)/1.3 var(--font-body); color: #fff; margin-bottom: 8px; }
.cta-band p { font: var(--body-4); color: rgba(255,255,255,0.78); }
.cta-band .btn-line { border-color: rgba(255,255,255,0.4); }

/* region chip rows */
.dong-list, .nearby-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.dong-list span { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 18px; font: 500 14px/1 var(--font-body); color: var(--desc); }
.nearby-list a { font: 600 14.5px/1 var(--font-body); color: var(--accent-hover); border: 1px solid var(--line); padding: 10px 18px; border-radius: var(--radius); transition: background .2s, color .2s; }
.nearby-list a:hover { background: var(--accent); color: #fff; }

/* gallery-case detail cross layout (fixed spec) */
.detail-row { display: flex; align-items: center; gap: 56px; padding: 56px 0; max-width: var(--max); margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.detail-row.reverse { flex-direction: row-reverse; }
.detail-img-wrap { flex: 0 0 44%; }
.detail-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; }
.detail-text { flex: 1 1 auto; }
.detail-eyebrow { font: 700 11px/1 var(--font-body); letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; margin-bottom: 14px; }
.detail-eyebrow b { color: var(--accent-hover); font-weight: 700; }
.detail-text h2 { font: 700 clamp(20px, 2.2vw, 26px)/1.35 var(--font-body); color: var(--text); letter-spacing: -0.01em; margin-bottom: 16px; }
.detail-text p { font: 400 15px/1.9 var(--font-body); color: var(--desc); }
.detail-text p + p { margin-top: 14px; }
.case-points-section { max-width: var(--max); margin: 0 auto; padding: 8px 28px 64px; }
.case-points-section h3 { font: 700 18px/1.3 var(--font-body); color: var(--text); margin-bottom: 20px; }
.case-points { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; max-width: 680px; }
.case-points li { display: flex; gap: 12px; font-size: 15.5px; color: var(--desc); line-height: 1.7; }
.case-points li::before { content: "+"; font-weight: 700; color: var(--accent-hover); flex-shrink: 0; }
.case-nav { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; padding: 28px 28px 72px; border-top: 1px solid var(--line); font: 600 15px/1.3 var(--font-body); }
.case-nav a { color: var(--accent-hover); }
.case-nav a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .detail-row, .detail-row.reverse { flex-direction: column; gap: 24px; padding: 32px 28px; }
  .detail-img-wrap { flex: none; width: 100%; }
}

/* portfolio grid */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* about / contact */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-img { border-radius: var(--card-radius); overflow: hidden; aspect-ratio: 4/3; background: #dfe4e3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text { font-size: 16.5px; color: var(--desc); line-height: 1.9; }
.about-text p { margin-bottom: 18px; }
.info-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.info-list li { font: var(--body-4); color: var(--desc); display: flex; gap: 10px; }
.info-list li b { color: var(--text); min-width: 100px; flex-shrink: 0; }
.contact-card { max-width: 560px; padding: 44px; border: 1px solid var(--line); border-radius: var(--card-radius); background: var(--bg-soft); }
.contact-tel { display: block; font: 800 clamp(32px,5vw,44px)/1.1 var(--font-body); color: var(--text); margin: 18px 0 8px; }
.contact-tel span { color: var(--accent-hover); }
.contact-note { font: var(--body-4); color: var(--desc); margin-bottom: 26px; }
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact-info-list li { font: var(--body-4); color: var(--desc); }
.contact-info-list b { color: var(--text); }

/* guide detail page */
.guide-lead-img { max-width: 760px; margin: 0 0 36px; }
.guide-lead-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--card-radius); }
.guide-body { max-width: 700px; font-size: 16.5px; color: var(--desc); line-height: 1.9; }
.guide-body h2 { font: 700 23px/1.3 var(--font-body); color: var(--text); margin: 38px 0 16px; }
.guide-body h2:first-child { margin-top: 0; }
.guide-body p { margin-bottom: 18px; }
.guide-body ul { margin: 0 0 18px 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.guide-body li { display: flex; gap: 10px; }
.guide-body li::before { content: "*"; color: var(--accent-hover); font-weight: 700; flex-shrink: 0; }
.guide-note { margin-top: 40px; padding: 22px 24px; background: var(--bg-soft); border-radius: var(--card-radius); font: var(--body-4); color: var(--desc); }
.related-links { display: flex; flex-wrap: wrap; gap: 12px; }
.related-links a { display: inline-flex; align-items: center; gap: 8px; font: 600 15px/1 var(--font-body); color: var(--text); border: 1px solid var(--line); padding: 14px 20px; border-radius: var(--radius); transition: border-color .2s, background .2s; }
.related-links a:hover { border-color: var(--accent); background: var(--bg-soft); }
.related-links a b { color: var(--accent-hover); font-weight: 700; }

/* sitemap page — faint tone */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.sitemap-col h2 { font: 700 15px/1 var(--font-body); color: var(--muted); margin-bottom: 18px; letter-spacing: 0.02em; }
.sitemap-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.sitemap-col a { font: 500 14px/1.4 var(--font-body); color: var(--muted); }
.sitemap-col a:hover { color: var(--desc); text-decoration: underline; }
@media (max-width: 860px) { .sitemap-grid, .about-grid { grid-template-columns: 1fr; } .problem-grid { grid-template-columns: 1fr; } .problem-side { position: static; } .guide-list { grid-template-columns: 1fr; } }

/* footer */
footer { background: var(--footer-bg); color: #fff; }
.foot-cta { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
.foot-cta-inner { display: grid; grid-template-columns: 1.4fr 1fr; align-items: center; gap: 48px; }
.foot-cta-text h2 { font: 700 clamp(22px, 2.4vw, 28px)/1.2 var(--font-body); color: #eef4f1; margin-bottom: 8px; letter-spacing: -0.02em; }
.foot-cta-text p { font: var(--body-4); color: rgba(238,244,241,0.68); }
.foot-cta-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
footer .btn-line { border-color: rgba(255,255,255,0.4); color: #fff; }
footer .btn-line:hover { border-color: #fff; }
.foot-body { padding: 20px 0; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.foot-brand { font: 700 20px/1 var(--font-body); color: #eef4f1; letter-spacing: -0.02em; margin-bottom: 16px; }
.foot-tagline { font: var(--body-4); color: rgba(238,244,241,0.6); }
.foot-info-list { display: flex; flex-direction: column; gap: 8px; justify-self: end; }
.foot-info-list dt { font: 500 12.5px/1 var(--font-body); letter-spacing: 0.05em; color: rgba(238,244,241,0.5); margin-bottom: 4px; margin-top: 16px; }
.foot-info-list dt:first-child { margin-top: 0; }
.foot-info-list dd { font: var(--foot-info); color: rgba(238,244,241,0.82); white-space: nowrap; }
.foot-info-list dd.foot-info-small { font: 400 12.5px/1.6 var(--font-kr); color: rgba(238,244,241,0.5); }
.foot-copy { padding: 12px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-copy p { font: 400 12px/1.5 var(--font-body); color: rgba(238,244,241,0.32); }
.foot-copy a.sitemap-link { font: 400 12px/1.5 var(--font-body); color: rgba(238,244,241,0.32); }
.foot-copy a.sitemap-link:hover { color: rgba(238,244,241,0.55); }

@media (max-width: 860px) {
  .foot-cta-inner, .foot-body { grid-template-columns: 1fr; text-align: center; }
  .foot-cta-btns { justify-content: center; }
  .foot-info-list { justify-self: center; align-items: center; }
  .cta-band-inner { justify-content: center; text-align: center; }
}
@media (max-width: 768px) {
  :root { --title-display: 800 27px/1.22 var(--font-body); --mid-bold: 700 20px/1.3 var(--font-body); --mid-regular: 400 16px/1.4 var(--font-body); --foot-info: 500 16px/1.65 var(--font-kr); }
  nav { display: none; }
  .logo-keyword { font: 800 19px/1 var(--font-body); }
  .hdr-tel { padding: 9px 16px; font-size: 13px; gap: 6px; }
  .hdr-tel svg { width: 14px; height: 14px; }
  .foot-copy { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 400px) {
  .logo-keyword { font: 800 16.5px/1 var(--font-body); }
  .logo-company { font-size: 10px; }
}

/* floating quick menu — left side, hover-reveal label (no digits ever printed) */
.float-quick { position: fixed; top: 50%; left: 22px; transform: translateY(-50%); z-index: 200; list-style: none; margin: 0; padding: 0; width: 56px; }
.float-quick li { position: relative; height: 56px; }
.float-quick li + li { margin-top: 8px; }
.float-quick a { position: absolute; top: 0; left: 0; display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: #fff; box-shadow: 2px 2px 12px rgba(8,20,17,.2); transition: width .35s ease, background .2s; overflow: hidden; text-decoration: none; }
.float-quick .fq-call { background: var(--accent); }
.float-quick .fq-call:hover, .float-quick .fq-call:focus-visible { width: 168px; background: var(--accent-hover); justify-content: flex-start; padding-left: 18px; }
.float-quick .fq-top { background: var(--ink); }
.float-quick .fq-top:hover { background: #000; }
.float-quick .fq-label { display: none; font: 700 14.5px/1 "Noto Sans KR", sans-serif; white-space: nowrap; padding-right: 16px; margin-left: 10px; }
.float-quick .fq-call:hover .fq-label, .float-quick .fq-call:focus-visible .fq-label { display: block; }
.float-quick svg { flex-shrink: 0; width: 21px; height: 21px; }
@media (max-width: 768px) {
  .float-quick { top: auto; bottom: 16px; left: 14px; transform: none; width: 50px; }
  .float-quick li { height: 50px; }
  .float-quick a { width: 50px; height: 50px; }
}

/* service icon list on info/guide summary cards, small variant icons */
.icon-sm { width: 26px; height: 26px; }
