@font-face {
  font-family: 'Presentation';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2404@1.0/Freesentation-7Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

:root {
  --c-mist: #F0F4F8;
  --c-teal-950: #12343B;
  --c-teal-600: #2C7873;
  --c-clay: #D96C4F;
  --c-ink-900: #0A1F22;
  --font-display: 'Presentation', 'Pretendard Variable', system-ui, sans-serif;
  --font-body: 'Pretendard Variable', system-ui, -apple-system, 'Malgun Gothic', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--c-mist);
  color: var(--c-ink-900);
}
h1, h2, h3, .logo { font-family: var(--font-display); }

header { background: var(--c-mist); border-bottom: 1px solid #d4e0e6; }
header .logo { font-weight: 700; font-size: 1.2rem; color: var(--c-teal-950); }
header nav a { color: var(--c-teal-600); font-size: 0.9rem; }
header nav a:hover, header nav a:focus-visible { color: var(--c-clay); }

.hero { background: var(--c-teal-950); color: #fff; }
.hero .container { max-width: 700px; }
.hero h1 { font-size: clamp(1.9rem, 4.2vw, 2.5rem); }
.hero .lead { margin-top: 0.9rem; color: #b9d4d2; max-width: 34rem; }
.hero .btn-tel {
  margin-top: 1.4rem;
  display: inline-block;
  background: var(--c-clay);
  color: #fff;
  padding: 0.85em 1.7em;
  border-radius: 3px;
  font-weight: 700;
}
.hero .btn-tel:hover { background: #bc5539; }

/* vertical scroll story, one section per step */
.story-step {
  padding-block: 3.2rem;
  border-bottom: 1px solid #d4e0e6;
}
.story-step:last-child { border-bottom: none; }
.story-step .step-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--c-clay);
  margin-bottom: 0.6rem;
}
.story-step h2 { font-size: 1.5rem; color: var(--c-teal-950); margin-bottom: 1rem; }
.story-step p { color: #2b4a4e; }
.story-step p + p { margin-top: 0.8rem; }

.branch-note {
  background: #fff;
  border-left: 4px solid var(--c-teal-600);
  border-radius: 4px;
  padding: 1rem 1.2rem;
  margin-top: 1rem;
}
.branch-note strong { color: var(--c-teal-600); display: block; margin-bottom: 0.3rem; font-family: var(--font-display); font-size: 0.95rem; }

.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
blockquote.review {
  background: #fff;
  border-radius: 4px;
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
  color: #2b4a4e;
}
blockquote.review cite { display: block; margin-top: 0.5rem; font-style: normal; font-size: 0.8rem; color: var(--c-teal-600); }

.related-links { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.related-links a {
  border: 1px solid var(--c-teal-600);
  color: var(--c-teal-600);
  border-radius: 3px;
  padding: 0.5em 1.1em;
  font-size: 0.88rem;
}
.related-links a:hover { background: var(--c-teal-600); color: #fff; }

.cta { background: var(--c-clay); color: #fff; }
.cta h3 { color: #fff; margin-bottom: 0.6rem; font-size: 1.3rem; }
.cta p { color: #fde3dc; margin-bottom: 1.1rem; font-family: var(--font-body); }
.cta a[href^="tel:"] { background: var(--c-teal-950); color: #fff; border-radius: 3px; font-weight: 700; }
.cta a[href^="tel:"]:hover { background: #0a2226; }

footer { background: var(--c-teal-950); color: #a9c2c0; font-size: 0.85rem; }
footer a { color: #a9c2c0; }
footer nav a { margin-right: 0.2rem; }

figcaption { color: #2b4a4e; margin-top: 0.5rem; }

@media (max-width: 720px) {
  .review-grid { grid-template-columns: 1fr; }
}
