/* 그때우리 사전예약 랜딩
   색은 앵커 사진의 톤에서 가져왔다 — 따뜻한 아이보리와 밤색. */

:root {
  --paper:  #f4ece0;
  --ink:    #2e2622;
  --muted:  #7a6a5c;
  --line:   #ddd0be;
  --accent: #8c3b2e;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
               "Malgun Gothic", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  word-break: keep-all;   /* 한글이 단어 중간에서 안 끊기게 */
}

main { max-width: 560px; margin: 0 auto; padding: 0 24px; }

section { padding: 64px 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: 0; }

h1, h2 { font-family: "Gowun Batang", serif; font-weight: 700; }

/* ── 첫 화면 ───────────────────────────────────────────── */
.hero { padding-top: 88px; text-align: center; }

.eyebrow {
  margin: 0 0 28px;
  font-size: 14px;
  letter-spacing: .32em;
  color: var(--muted);
}

h1 {
  margin: 0 0 28px;
  font-size: clamp(34px, 9vw, 48px);
  line-height: 1.32;
}
h1 em { font-style: normal; color: var(--accent); }

.lede { margin: 0 0 36px; color: var(--muted); }

.cta {
  display: inline-block;
  padding: 17px 40px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
}
.cta:active { transform: translateY(1px); }

.micro { margin: 14px 0 0; font-size: 14px; color: var(--muted); }

/* ── 샘플 ──────────────────────────────────────────────── */
h2 { margin: 0 0 28px; font-size: 24px; text-align: center; }

.grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 520px) { .grid { grid-template-columns: repeat(3, 1fr); } }

figure { margin: 0; }
figure img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
  background: #e3d7c6;   /* 사진 없을 때 빈 칸이 안 깨져 보이게 */
}
figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

/* ── 방법 ──────────────────────────────────────────────── */
.how ol { margin: 0; padding-left: 1.3em; }
.how li { margin-bottom: 12px; }

.note {
  margin: 28px 0 0;
  padding: 18px 20px;
  border-radius: 6px;
  background: #ebe0d1;
  font-size: 15px;
  color: var(--muted);
}
.note strong { color: var(--ink); }

/* ── 알림 신청 ─────────────────────────────────────────── */
.alert { text-align: center; }
.alert p { color: var(--muted); }
.alert .cta { margin-top: 12px; }

footer {
  padding: 40px 0 56px;
  text-align: center;
  font-size: 14px;
  letter-spacing: .2em;
  color: var(--muted);
}
