:root {
  --cream: #fff8ef;
  --cream-deep: #f6eadb;
  --surface: rgba(255, 252, 247, 0.88);
  --brown: #432918;
  --brown-soft: #765a46;
  --coral: #f47745;
  --coral-deep: #d9572d;
  --amber: #e7a347;
  --green: #3f8a5b;
  --line: rgba(67, 41, 24, 0.13);
  --shadow: 0 20px 60px rgba(81, 47, 25, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--brown);
  background:
    radial-gradient(circle at 10% 5%, rgba(244, 119, 69, 0.12), transparent 28rem),
    radial-gradient(circle at 90% 25%, rgba(231, 163, 71, 0.13), transparent 24rem),
    var(--cream);
  font-family: "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  line-height: 1.65;
}

a { color: inherit; }

.shell { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 239, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; }
.brand-mark {
  width: 34px;
  height: 34px;
  display: block;
  object-fit: cover;
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(244, 119, 69, 0.26);
}
.brand small { display: block; margin-top: -3px; color: var(--brown-soft); font-size: 10px; font-weight: 600; letter-spacing: .08em; }

.links { display: flex; align-items: center; gap: 22px; }
.links a { color: var(--brown-soft); text-decoration: none; font-size: 14px; font-weight: 650; }
.links a:hover { color: var(--coral-deep); }

.hero { min-height: 680px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 60px; padding: 88px 0; }
.eyebrow { margin: 0 0 16px; color: var(--coral-deep); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(43px, 6.3vw, 74px); line-height: 1.08; letter-spacing: -.055em; }
.lead { max-width: 620px; margin: 26px 0 0; color: var(--brown-soft); font-size: 19px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); text-decoration: none; font-weight: 750; }
.button.primary { color: white; border-color: transparent; background: linear-gradient(135deg, var(--coral), var(--coral-deep)); box-shadow: 0 12px 30px rgba(217, 87, 45, .24); }

.hero-art {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: radial-gradient(circle at 50% 42%, #604535 0%, #3f2d24 55%, #2e211b 100%);
  box-shadow: var(--shadow);
}
.hero-art::before { content: ""; position: absolute; inset: 10% -4% -5% 8%; border-radius: 42%; background: rgba(231, 163, 71, .2); filter: blur(34px); }
.hero-art img { position: relative; width: 100%; display: block; margin: -16% 0 -22%; }
.hero-caption {
  position: relative;
  margin: 0 24px 24px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 248, 239, .14);
  border-radius: 20px;
  color: var(--cream);
  background: rgba(34, 23, 18, .78);
  box-shadow: 0 18px 40px rgba(18, 10, 6, .22);
  backdrop-filter: blur(16px);
}
.hero-caption > span { display: block; color: #f5a15e; font-size: 10px; font-weight: 850; letter-spacing: .18em; }
.hero-caption strong { display: block; margin-top: 3px; font-size: 21px; letter-spacing: -.02em; }
.hero-caption p { margin: 1px 0 12px; color: rgba(255, 248, 239, .72); font-size: 13px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.hero-tags em { padding: 3px 9px; border-radius: 999px; color: rgba(255, 248, 239, .84); background: rgba(255, 248, 239, .1); font-size: 11px; font-style: normal; font-weight: 650; }

.section { padding: 92px 0; }
.section-title { max-width: 720px; margin-bottom: 36px; }
.section h2, .policy h1 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 46px); line-height: 1.2; letter-spacing: -.035em; }
.section-title p, .policy .intro { margin: 0; color: var(--brown-soft); font-size: 17px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: 0 12px 36px rgba(81, 47, 25, .06); }
.card .icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 13px; color: white; background: linear-gradient(135deg, var(--amber), var(--coral)); font-weight: 900; }
.card .icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin: 0 0 8px; font-size: 19px; }
.card p { margin: 0; color: var(--brown-soft); }

.trust { display: flex; align-items: center; gap: 14px; padding: 20px 22px; border: 1px solid rgba(63, 138, 91, .22); border-radius: 18px; background: rgba(63, 138, 91, .08); }
.dot { width: 11px; height: 11px; flex: 0 0 auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(63, 138, 91, .12); }

.policy { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 76px 0 110px; }
.policy .meta { margin: 18px 0 38px; color: var(--brown-soft); font-size: 14px; }
.policy article { padding: clamp(24px, 5vw, 48px); border: 1px solid var(--line); border-radius: 26px; background: var(--surface); box-shadow: var(--shadow); }
.policy h2 { margin: 36px 0 10px; font-size: 21px; }
.policy h2:first-child { margin-top: 0; }
.policy p, .policy li { color: var(--brown-soft); }
.policy ul { padding-left: 21px; }
.policy strong { color: var(--brown); }

.footer { border-top: 1px solid var(--line); padding: 34px 0 50px; color: var(--brown-soft); font-size: 13px; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; }
.footer a { margin-left: 18px; }

@media (max-width: 760px) {
  .links a:first-child { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 42px; padding: 64px 0 72px; }
  .hero-art { max-width: 440px; }
  .hero-art img { margin: -14% 0 -20%; }
  .hero-caption { margin: 0 16px 16px; padding: 16px 17px; }
  .hero-caption strong { font-size: 18px; }
  .grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .footer-row { flex-direction: column; }
  .footer a { margin: 0 18px 0 0; }
}
