:root {
  color-scheme: light;
  --bg: #fbfaf7;
  --surface: #ffffff;
  --text: #241f1c;
  --muted: #6c625b;
  --line: #e7ded6;
  --accent: #009753;
  --accent-strong: #006b3f;
  --gold: #b8842f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.72;
  word-break: keep-all;
}

a {
  color: inherit;
  text-decoration-color: rgba(0, 151, 83, 0.35);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-strong);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
  font-size: 14px;
  font-weight: 750;
  color: var(--muted);
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 20px 72px;
}

.hero {
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 4px 12px;
}

.notice {
  border: 1px solid rgba(0, 151, 83, 0.22);
  border-radius: 8px;
  background: #eef9f3;
  padding: 18px 20px;
  color: #164a31;
  font-weight: 750;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card,
section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
}

section {
  margin-top: 18px;
}

.card h2,
section h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

h3 {
  margin: 22px 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

p,
ul,
ol {
  margin: 10px 0 0;
}

ul,
ol {
  padding-left: 22px;
}

li + li {
  margin-top: 6px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 14px;
}

.price strong {
  font-size: 36px;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f4ead7;
  padding: 4px 10px;
  color: #7a531c;
  font-size: 12px;
  font-weight: 900;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  background: var(--accent);
  padding: 10px 16px;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--surface);
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

th {
  width: 30%;
  background: #f7f2ed;
  font-weight: 850;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #241f1c;
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px;
  font-size: 13px;
  font-weight: 650;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 12px;
}

.footer-links a {
  color: #fff;
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .container {
    padding-top: 38px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .card,
  section {
    padding: 20px;
  }
}
