*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: "Noto Sans KR", sans-serif;
  background: #f7f4ee;
  color: #171410;
}
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, p { margin: 0; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 20;
  background: #123c2f;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}
.skip-link:focus { left: 16px; }
img { max-width: 100%; height: auto; }
address { font-style: normal; }

.landing {
  min-height: 100vh;
  background: #f7f4ee;
  color: #171410;
}
.landing-wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}
.landing-nav {
  border-bottom: 1px solid #e6dfd3;
  background: rgba(247, 244, 238, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.landing-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
}
.landing-logo {
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.landing-logo img { height: 28px; width: auto; }
.landing-hero { padding: 88px 0 72px; }
.landing-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.landing-hero-grid.has-media {
  display: flex;
  gap: 48px;
  align-items: center;
}
.landing-hero-grid.has-media > :first-child {
  flex: 1 1 0;
  min-width: 0;
}
.landing-hero-grid.is-solo .landing-lead { max-width: none; }
.landing-kicker {
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 14px;
}
.landing-h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.05em;
  font-weight: 700;
}
.landing-lead {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.7;
  color: #5c564d;
  max-width: 40rem;
}
.landing-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.landing-cta-center { justify-content: center; }
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.landing-btn-solid { background: var(--brand); color: #fff; }
.landing-btn-ghost { border: 1px solid #d8d0c4; background: #fff; }
.landing-btn-light { background: #fff; color: #171410; }
.landing-hero-media {
  display: flex;
  flex: 0 1 auto;
  max-width: 50%;
  justify-content: flex-end;
}
.landing-hero-media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
}
.landing-section { padding: 72px 0; }
.landing-h2 {
  font-size: 32px;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin-bottom: 28px;
}
.landing-cards,
.landing-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.landing-cards article,
.landing-quotes blockquote {
  background: #fff;
  border: 1px solid #e7dfd3;
  border-radius: 20px;
  padding: 24px;
}
.landing-index {
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
}
.landing-cards h3,
.landing-faq h3 {
  font-size: 20px;
  letter-spacing: -0.03em;
  margin: 10px 0;
}
.landing-cards p,
.landing-quotes p,
.landing-about p,
.landing-faq p {
  color: #5c564d;
  line-height: 1.7;
}
.landing-about p { white-space: pre-wrap; }
.landing-band {
  background: #fff;
  border-block: 1px solid #e7dfd3;
  padding: 28px 0;
}
.landing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 16px;
}
.landing-stats strong {
  display: block;
  font-size: 32px;
  letter-spacing: -0.04em;
}
.landing-stats span { color: #6f675c; }
.landing-quotes footer {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.landing-quotes cite { font-style: normal; font-weight: 700; }
.landing-faq details {
  background: #fff;
  border: 1px solid #e7dfd3;
  border-radius: 16px;
  padding: 8px 18px;
  margin-bottom: 10px;
}
.landing-faq summary { cursor: pointer; list-style: none; }
.landing-faq summary::-webkit-details-marker { display: none; }
.landing-final {
  background: var(--brand);
  color: #f6f3ec;
  padding: 80px 0;
  text-align: center;
}
.landing-final h2 {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
}
.landing-final p {
  max-width: 40rem;
  margin: 16px auto 0;
  color: rgba(246, 243, 236, 0.82);
  line-height: 1.7;
}
.landing-footer {
  padding: 32px 0 48px;
  color: #6f675c;
  font-size: 13px;
}
.landing-footer ul {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.landing-minimal .landing-hero {
  padding: 120px 0 80px;
  text-align: center;
}
.landing-minimal .landing-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.landing-minimal .landing-lead,
.landing-minimal .landing-h1 {
  margin-left: auto;
  margin-right: auto;
}
.landing-minimal .landing-cta-row { justify-content: center; }
.landing-minimal .landing-hero-media {
  max-width: none;
  justify-content: center;
}
@media (max-width: 860px) {
  .landing-hero-grid,
  .landing-hero-grid.has-media,
  .landing-cards,
  .landing-quotes,
  .landing-stats {
    grid-template-columns: 1fr;
  }
  .landing-hero-grid.has-media { flex-direction: column; }
  .landing-hero-media { max-width: none; justify-content: center; }
}
