:root {
  --ink: #181511;
  --muted: #6f6a60;
  --paper: #f4efe5;
  --paper-deep: #e6dccd;
  --line: rgba(24, 21, 17, 0.18);
  --red: #b84a35;
  --green: #315f54;
  --blue: #345f85;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 20%, rgba(184, 74, 53, 0.16), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(49, 95, 84, 0.18), transparent 30%),
    linear-gradient(135deg, var(--paper), var(--paper-deep));
  font-family:
    ui-serif, "Iowan Old Style", "Apple SD Gothic Neo", "Noto Serif KR",
    Georgia, serif;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 76%);
}

.page-shell {
  width: min(100%, 1120px);
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: clamp(36px, 6vw, 72px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 68px);
}

.intro {
  align-self: end;
  max-width: 880px;
}

.kicker,
.status {
  font-family:
    Inter, Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(3.1rem, 8.4vw, 8.1rem);
  font-weight: 700;
  line-height: 1.03;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.lead {
  max-width: 680px;
  margin: clamp(24px, 4vw, 42px) 0 0;
  color: #3d3830;
  font-size: clamp(1.18rem, 2.4vw, 1.75rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 48px);
  padding-top: clamp(24px, 5vw, 54px);
  border-top: 1px solid var(--line);
}

.note p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.8;
  text-wrap: pretty;
}

.note p:first-child::first-letter {
  color: var(--red);
  font-size: 3.4em;
  line-height: 0.86;
  float: left;
  padding: 0.08em 0.12em 0 0;
}

.status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .page-shell {
    min-height: 100svh;
    grid-template-rows: 1fr auto auto;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 5.4rem);
    line-height: 1.08;
  }

  h1 span {
    white-space: normal;
  }

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