:root {
  --ink: #4d3328;
  --cream: #fffaf0;
  --paper: #fffdf8;
  --coral: #e96f55;
  --sky: #dff3f5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Noto Sans KR", system-ui, -apple-system, sans-serif;
}
a { color: inherit; text-decoration: none; }
header {
  width: min(1120px, calc(100% - 40px));
  height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 850; }
.brand img { width: 44px; height: 44px; border-radius: 13px; }
.text-link { font-size: 14px; font-weight: 750; }
.hero {
  min-height: 650px;
  padding: 70px max(7vw, calc((100vw - 1120px) / 2));
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  background: linear-gradient(130deg, var(--sky), #f8edc5 72%, #f7c9b0);
  border-block: 1px solid rgba(77, 51, 40, .12);
}
.eyebrow { color: var(--coral); font-size: 13px; font-weight: 900; letter-spacing: .19em; }
h1 { margin: 16px 0 0; font-size: clamp(52px, 6vw, 82px); line-height: 1.08; letter-spacing: -.07em; }
h1 em { color: var(--coral); font-style: normal; }
.lead { max-width: 570px; margin: 28px 0 0; font-size: 18px; line-height: 1.8; }
.button {
  display: inline-flex;
  margin-top: 34px;
  padding: 16px 25px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: white;
  background: var(--coral);
  box-shadow: 5px 6px 0 var(--ink);
  font-weight: 850;
}
.art { position: relative; min-height: 480px; display: grid; place-items: center; }
.sun { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: #fff4b0; }
.icon { position: relative; width: min(350px, 78vw); border: 10px solid var(--paper); border-radius: 76px; outline: 3px solid var(--ink); box-shadow: 16px 20px 0 rgba(77, 51, 40, .18); transform: rotate(3deg); }
.features { width: min(1120px, calc(100% - 40px)); margin: auto; padding: 105px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.features article { padding: 30px; border: 1px solid rgba(77, 51, 40, .12); border-radius: 26px 26px 70px 26px; background: var(--paper); box-shadow: 0 14px 38px rgba(77, 51, 40, .07); }
.features article:nth-child(2) { background: #edf6da; }
.features article:nth-child(3) { background: #fde1d6; }
.features b { color: var(--coral); font: italic 30px Georgia, serif; }
.features h2 { margin: 32px 0 10px; font-size: 22px; }
.features p { color: rgba(77, 51, 40, .7); line-height: 1.7; }
footer { padding: 45px max(7vw, calc((100vw - 1120px) / 2)); display: flex; justify-content: space-between; gap: 24px; background: var(--ink); color: #fff9eb; }
footer div, footer nav { display: flex; gap: 20px; }
footer span, footer nav { color: rgba(255, 249, 235, .7); font-size: 14px; }

@media (max-width: 780px) {
  .hero { grid-template-columns: 1fr; padding-inline: 22px; }
  .art { min-height: 420px; }
  .features { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .brand span { display: none; }
  h1 { font-size: 13vw; }
  .lead { font-size: 16px; }
  footer { flex-direction: column; }
}
