/* 청은행정사사무소 — design system */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #0d1a16;
  --ink-soft: #24352f;
  --muted: #5f736b;
  --line: rgba(13, 26, 22, 0.1);
  --line-strong: rgba(13, 26, 22, 0.18);
  --bg: #eef4f1;
  --bg-tint: #e2efe8;
  --surface: #fafcfb;
  --surface-2: #ffffff;
  --accent: #0f9f75;
  --accent-deep: #0a7354;
  --accent-soft: #d7f3e8;
  --pop: #c8f54a;
  --warn: #d97706;
  --danger: #c2410c;
  --shadow: 0 18px 50px rgba(13, 26, 22, 0.08);
  --shadow-sm: 0 8px 24px rgba(13, 26, 22, 0.06);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 72px;
  --container: 1120px;
  --font-display: "Sora", "Pretendard Variable", Pretendard, sans-serif;
  --font-body: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(200, 245, 74, 0.18), transparent 55%),
    radial-gradient(900px 500px at -5% 20%, rgba(15, 159, 117, 0.12), transparent 50%),
    linear-gradient(180deg, #f5f9f7 0%, var(--bg) 40%, #e8f0ec 100%);
  background-attachment: fixed;
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--pop);
  color: var(--ink);
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(250, 252, 251, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  background: transparent;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav a {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav a:hover,
.nav a.active {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 650;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--ink);
  color: #f5fff9;
  box-shadow: 0 10px 28px rgba(13, 26, 22, 0.18);
}

.btn-primary:hover {
  background: #162922;
}

.btn-accent,
.btn-call {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 159, 117, 0.32);
}

.btn-accent:hover,
.btn-call:hover {
  background: var(--accent-deep);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--surface-2);
}

.btn-kakao {
  background: #fee500;
  color: #191919;
  box-shadow: 0 10px 24px rgba(254, 229, 0, 0.28);
}

.btn-kakao:hover {
  background: #f5d800;
}

.btn-pop {
  background: var(--pop);
  color: var(--ink);
}

.btn-sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  cursor: pointer;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 3px 0;
  transition: 0.2s var(--ease);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2.75rem, 6vw, 5.5rem) 0 3.5rem;
  overflow: hidden;
  min-height: 640px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-visual img {
  position: absolute;
  top: -4%;
  right: -2%;
  height: 112%;
  width: auto;
  max-width: none;
  object-fit: cover;
  object-position: 58% 8%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #f3f8f5 0%,
    #f3f8f5 30%,
    rgba(243, 248, 245, 0.62) 40%,
    rgba(243, 248, 245, 0.16) 48%,
    transparent 56%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(200px, 1.08fr);
  gap: 1.5rem;
  align-items: center;
  min-height: 520px;
}

.hero-copy-block {
  max-width: 36rem;
}

.hero-spacer {
  min-height: 1px;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin: 0 0 1.25rem;
}

.hero-brand em {
  font-style: normal;
  color: var(--accent);
  display: block;
}

.hero-copy {
  max-width: 34rem;
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-flow-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.hero-flow-item b {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--pop);
  color: var(--ink);
  font-size: 0.78rem;
  font-family: var(--font-display);
}

.hero-flow-item strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.hero-flow-item span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.55rem;
}

.section-head h2,
.page-hero h1,
.legal-wrap h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.section-desc {
  color: var(--muted);
  max-width: 38rem;
  margin: 0.65rem 0 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 159, 117, 0.28);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 1rem;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.card .link-more {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--accent-deep);
  font-weight: 650;
  font-size: 0.9rem;
}

/* Feature band */
.band {
  background: var(--ink);
  color: #e9f6f0;
  border-radius: 28px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(15, 159, 117, 0.5), transparent 65%);
}

.band-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.band-home {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.band-home > * {
  position: relative;
  z-index: 1;
}

.band-lead .btn {
  margin-top: 0.15rem;
}

.about-portrait {
  margin: 0 0 1.15rem;
  width: min(220px, 70%);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.about-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 10%;
}

.band h2 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

.band p {
  color: rgba(233, 246, 240, 0.78);
  margin: 0 0 1.25rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: stretch;
}

.stat {
  padding: 0.95rem 1.05rem 1rem;
  min-height: 0;
  height: auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--pop);
}

.stat span {
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.35;
  color: #edf8f3;
}

.stat p {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(233, 246, 240, 0.62);
}

/* Tools / search */
.tool-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.search-box {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.search-box input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.filter-pills button {
  border: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  color: var(--ink-soft);
}

.filter-pills button.active,
.filter-pills button:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* Page hero */
.page-hero {
  padding: 2.75rem 0 1.5rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 40rem;
  margin: 0.75rem 0 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.breadcrumb a:hover {
  color: var(--accent-deep);
}

/* Guide layout */
.guide-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.side-nav {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.side-nav h3 {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-display);
}

.side-nav a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.side-nav a:hover,
.side-nav a.active {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.prose {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.prose h2 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 1.4rem 0 0.5rem;
  font-size: 1.05rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
}

.callout {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
}

.callout.warn {
  background: #fff7ed;
  border-left-color: var(--warn);
}

.table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border: 1px solid var(--line);
  border-radius: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th,
td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: var(--bg-tint);
  font-weight: 650;
}

tr:last-child td {
  border-bottom: 0;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 650;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent-deep);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .faq-body {
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
}

/* QnA */
.qna-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.25rem;
  align-items: start;
}

.qna-list {
  display: grid;
  gap: 0.85rem;
}

.qna-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
}

.qna-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.55rem;
}

.badge {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 650;
}

.badge.pending {
  background: #fff7ed;
  color: #9a3412;
}

.qna-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.qna-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.qna-answer {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--line);
}

.form-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.form-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.form-card > p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

.form-grid.two {
  grid-template-columns: 1fr 1fr;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(15, 159, 117, 0.25);
  border-color: var(--accent);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 400;
  font-size: 0.88rem;
}

.check-row input {
  width: auto;
  margin-top: 0.2rem;
}

.form-msg {
  display: none;
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.9rem;
}

.form-msg.show {
  display: block;
}

.form-msg.error {
  background: #fff1f0;
  color: #9f1239;
}

/* Checklist wizard */
.wizard {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.wizard-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.wizard-progress span {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: var(--bg-tint);
}

.wizard-progress span.on {
  background: var(--accent);
}

.wizard-step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.option {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  cursor: pointer;
  background: #fff;
  text-align: left;
  transition: 0.2s var(--ease);
}

.option:hover,
.option.selected {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.option strong {
  display: block;
  margin-bottom: 0.25rem;
}

.option span {
  color: var(--muted);
  font-size: 0.88rem;
}

.wizard-result {
  display: none;
}

.wizard-result.show {
  display: block;
}

.result-box {
  margin-top: 1rem;
  padding: 1.15rem;
  border-radius: 14px;
  background: var(--bg-tint);
  border: 1px solid var(--line);
}

/* About / timeline */
.timeline {
  display: grid;
  gap: 0.85rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.timeline-item strong {
  font-family: var(--font-display);
  color: var(--accent-deep);
}

/* Contact strip */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.contact-item {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.contact-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.contact-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Legal */
.legal-wrap {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

.legal-wrap h2 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.65rem;
  font-family: var(--font-display);
}

.legal-wrap p,
.legal-wrap li {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.legal-meta {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  background: var(--ink);
  color: rgba(237, 248, 243, 0.82);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0;
}

.footer-grid h4 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 0.92rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.footer-grid a {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: rgba(237, 248, 243, 0.72);
}

.footer-grid a:hover {
  color: var(--pop);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(237, 248, 243, 0.55);
}

.footer-bottom a {
  color: rgba(237, 248, 243, 0.75);
}

.footer-bottom a:hover {
  color: var(--pop);
}

/* Floating CTA / utilities */
.float-cta {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.float-cta a,
.float-cta button {
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(15, 159, 117, 0.35);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.float-cta .call-btn {
  background: var(--accent);
  color: #fff;
}

.float-cta .call-btn:hover {
  background: var(--accent-deep);
}

.float-cta .kakao-btn {
  background: #fee500;
  color: #191919;
  box-shadow: 0 12px 30px rgba(254, 229, 0, 0.4);
}

.float-cta .kakao-btn:hover {
  background: #f5d800;
}

.float-cta .top-btn {
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.float-cta .top-btn.show {
  opacity: 1;
  pointer-events: auto;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s var(--ease);
  z-index: 200;
  font-size: 0.9rem;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Empty / misc */
.empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--muted);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: var(--bg-tint);
  color: var(--ink-soft);
}

.service-list .card[hidden] {
  display: none;
}

/* Mobile nav */
@media (max-width: 960px) {
  .hero-grid,
  .hero-flow,
  .band-grid,
  .guide-layout,
  .qna-layout,
  .footer-grid,
  .card-grid,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .card-grid.services {
    grid-template-columns: 1fr 1fr;
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(250, 252, 251, 0.97);
    border-bottom: 1px solid var(--line);
    gap: 0.25rem;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 1rem;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 0;
  }

  .hero-visual {
    position: relative;
    height: 320px;
  }

  .hero-visual img {
    inset: 0;
    right: auto;
    top: auto;
    width: 100%;
    height: 100%;
    object-position: 50% 8%;
    -webkit-mask-image: linear-gradient(180deg, #000 68%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 68%, transparent 100%);
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      transparent 0%,
      transparent 38%,
      rgba(243, 248, 245, 0.28) 58%,
      #f3f8f5 78%,
      #eef4f1 100%
    );
  }

  .hero-grid {
    min-height: 0;
    margin-top: -4.25rem;
  }

  .hero-spacer {
    display: none;
  }

  .side-nav {
    position: static;
  }

  .form-card {
    position: static;
  }

  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .option-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .card-grid.services {
    grid-template-columns: 1fr;
  }

  .stat-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .stat {
    padding: 0.85rem 1rem;
  }

  .hero-visual {
    height: 260px;
  }

  .float-cta {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

@media print {
  .site-header,
  .float-cta,
  .site-footer,
  .menu-toggle {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .legal-wrap,
  .prose {
    border: 0;
    padding: 0;
  }
}
