@font-face {
  font-family: GoyoSerif;
  src: url("fonts/nanum-myeongjo-400.ttf");
}
@font-face {
  font-family: GoyoLatin;
  src: url("fonts/cormorant-garamond-500.ttf");
}
* { box-sizing: border-box; }
html { background: #f3efe5; color: #24342e; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans", sans-serif;
  background: radial-gradient(circle at 75% 8%, #dce9dc 0, transparent 32rem), #f3efe5;
  line-height: 1.7;
}
.top {
  max-width: 1120px;
  margin: auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { color: #274f42; text-decoration: none; font: 600 22px GoyoSerif, GoyoLatin, serif; }
.brand span { margin-right: 9px; }
nav { display: flex; flex-wrap: wrap; gap: 8px; }
nav a { font-size: 11px; color: #52625b; text-decoration: none; padding: 5px 7px; border-radius: 12px; }
nav a[aria-current] { background: #d4e3d7; color: #204b3d; }
main { max-width: 980px; margin: auto; padding: 52px 24px 80px; }
.hero { max-width: 760px; }
.eyebrow { font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: #567466; margin: 0 0 18px; }
h1, h2 { font-family: GoyoSerif, GoyoLatin, serif; font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(46px, 8vw, 82px); margin: 0 0 24px; color: #173b30; }
.lead { font: clamp(22px, 3.5vw, 34px) GoyoSerif, GoyoLatin, serif; line-height: 1.5; margin: 0 0 18px; }
.summary { color: #52625b; max-width: 650px; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 16px; }
.actions a { padding: 12px 18px; border-radius: 9px; text-decoration: none; font-weight: 700; }
.primary { background: #2f5d4f; color: white; }
.secondary { border: 1px solid #789286; color: #274f42; background: #faf8f1; }
.free { font-size: 12px; color: #69776f; max-width: 760px; }
.steps, .faq { margin-top: 84px; }
.steps h2, .faq h2 { font-size: 34px; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step-grid article { background: #fffdf7; border: 1px solid #dcd7c9; border-radius: 14px; padding: 22px; min-height: 150px; }
.step-grid span { color: #7e9d8f; font: 22px GoyoLatin, serif; }
.step-grid p { font-size: 17px; margin: 18px 0 0; }
.faq details { border-top: 1px solid #cfc9ba; padding: 18px 2px; }
.faq details:last-child { border-bottom: 1px solid #cfc9ba; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { color: #52625b; }
footer { border-top: 1px solid #d4cebf; max-width: 1120px; margin: auto; padding: 24px; display: flex; gap: 20px; color: #6d776f; font-size: 12px; }
footer a { color: inherit; }
footer span { margin-left: auto; }
@media (max-width: 700px) {
  .top { align-items: flex-start; flex-direction: column; }
  .step-grid { grid-template-columns: 1fr; }
  main { padding-top: 24px; }
  .steps, .faq { margin-top: 58px; }
}
