:root {
  --forest: #1f5a41;
  --forest-light: #3a8565;
  --butter: #f2c94c;
  --bg: #fcfcfc;
  --surface: #f5f5f7;
  --text: #1f2430;
  --text-muted: #666a73;
  --border: #e6e6ea;
  --max-width: 880px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  background: var(--bg);
}

a {
  color: var(--forest);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--forest) 0%, var(--forest-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--butter);
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 16px;
}

.brand-sub {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.site-nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.site-nav a {
  color: var(--text-muted);
}

.site-nav a:hover {
  color: var(--forest);
}

.hero {
  padding: 48px 20px 32px;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 12px;
  font-weight: 700;
}

.hero .lead {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 24px;
  max-width: 560px;
}

.hero-accent {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(242, 201, 76, 0.35);
  color: var(--forest);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section {
  padding: 0 20px 40px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section h2 {
  font-size: 20px;
  margin: 0 0 16px;
  font-weight: 700;
}

.section p {
  margin: 0 0 12px;
  color: var(--text-muted);
}

.card-grid {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  font-size: 15px;
}

.card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.contact-list li:last-child {
  border-bottom: none;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  margin-top: 40px;
}

.site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-meta {
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 600px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero h1 {
    font-size: 28px;
  }
}
