:root {
  color-scheme: light;
  --canvas: #f4efe5;
  --paper: #fffcf6;
  --paper-2: #eee8de;
  --ink: #28231e;
  --muted: #665e55;
  --line: #ded5c8;
  --sage: #496046;
  --sage-soft: #e3e9de;
  --brown: #76513b;
  --brown-soft: #ebddce;
  --gold: #b78127;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--sage); text-underline-offset: 3px; }
a:hover { color: var(--brown); }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; border-radius: 4px; }
img { max-width: 100%; }
.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 5;
  padding: 10px 16px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { top: 12px; }
.site-shell { width: min(1080px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-size: 20px; font-weight: 800; letter-spacing: -.035em; }
.brand img { width: 40px; height: 40px; border-radius: 10px; }
.site-nav { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; }
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--sage-soft); color: var(--sage); }
.site-nav .language { margin-left: 8px; border: 1px solid var(--line); background: var(--paper); }
.eyebrow { margin: 0 0 10px; color: var(--sage); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.25; letter-spacing: -.045em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.16rem; }
.lead { max-width: 56ch; color: var(--muted); font-size: clamp(1.04rem, 2vw, 1.2rem); }
.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding-block: clamp(64px, 9vw, 112px) clamp(70px, 9vw, 118px);
}
.home-hero h1 { margin-bottom: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid var(--sage);
  border-radius: 12px;
  background: var(--sage);
  color: white;
  text-decoration: none;
  font-weight: 750;
}
.button:hover { background: #354a34; color: white; }
.button.ghost { background: var(--paper); color: var(--sage); }
.button.ghost:hover { background: var(--sage-soft); }
.hero-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid #d8c9b8;
  border-radius: 30px;
  background: radial-gradient(circle at 30% 16%, #fff8e9 0, #f3e7d6 46%, #d8c4a8 100%);
  box-shadow: 0 24px 50px rgb(71 52 35 / 11%);
}
.hero-card::before {
  position: absolute;
  inset: auto -14% -82px;
  height: 180px;
  border-radius: 50% 50% 0 0;
  background: #b6c2a4;
  content: "";
}
.hero-card img { position: absolute; top: 45%; left: 50%; width: min(80%, 340px); height: auto; transform: translate(-50%, -50%); filter: drop-shadow(0 12px 12px rgb(74 48 31 / 15%)); }
.hero-card .caption { position: absolute; right: 22px; bottom: 19px; left: 22px; z-index: 1; width: fit-content; margin-inline: auto; padding: 5px 12px; border-radius: 999px; background: rgb(255 252 246 / 87%); color: #42392f; font-size: 13px; font-weight: 700; text-align: center; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; padding-bottom: 84px; }
.feature-card { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); }
.feature-card .number { margin-bottom: 20px; color: var(--gold); font-size: 13px; font-weight: 800; }
.feature-card h2 { margin-bottom: 10px; font-size: 1.25rem; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.content-header { max-width: 740px; padding-block: 64px 38px; }
.content-header h1 { margin-bottom: 16px; font-size: clamp(2.25rem, 5vw, 3.5rem); }
.content-header .lead { margin-bottom: 0; }
.notice { padding: 18px 22px; border: 1px solid #d9e2d3; border-radius: 16px; background: var(--sage-soft); color: #344a32; font-size: 14px; }
.article { margin-bottom: 84px; padding: clamp(25px, 5vw, 56px); border: 1px solid var(--line); border-radius: 24px; background: var(--paper); box-shadow: 0 10px 36px rgb(71 52 35 / 5%); }
.article section + section { margin-top: 34px; padding-top: 34px; border-top: 1px solid var(--line); }
.article h2 { margin-bottom: 15px; font-size: clamp(1.28rem, 2.5vw, 1.6rem); }
.article p, .article li { max-width: 76ch; color: #48413a; }
.article p:last-child, .article ul:last-child { margin-bottom: 0; }
.article ul { padding-left: 1.3em; }
.article li + li { margin-top: 7px; }
.meta { color: var(--muted); font-size: 13px; }
.quick-links { display: flex; flex-wrap: wrap; gap: 10px; margin-block: 24px 4px; }
.quick-links a { padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); font-size: 14px; text-decoration: none; }
.contact-card { padding: 23px; border-radius: 16px; background: var(--brown-soft); }
.contact-card p { margin-bottom: 8px; }
.contact-card a { font-weight: 750; }
.site-footer { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-block: 26px 40px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px; }
.site-footer a { color: inherit; }
@media (max-width: 760px) {
  .home-hero { grid-template-columns: 1fr; padding-top: 58px; }
  .hero-card { min-height: 340px; }
  .hero-card img { width: min(80%, 260px); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 21px; }
}
@media (max-width: 540px) {
  .site-shell { width: min(100% - 28px, 1080px); }
  .site-header { padding-block: 16px; }
  .site-nav { width: 100%; }
  .site-nav a { padding-inline: 11px; }
  .site-nav .language { margin-left: auto; }
  .article { border-radius: 18px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
