:root {
  --bg: #f2ece5;
  --paper: #fcf8f2;
  --ink: #2f2522;
  --muted: #73625b;
  --line: rgba(47, 37, 34, 0.12);
  --accent: #8e6e63;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(142, 110, 99, 0.12), transparent 24%),
    linear-gradient(180deg, #f2ece5 0%, #ece4da 100%);
  font-family: "Noto Sans KR", system-ui, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(840px, calc(100% - 24px));
  margin: 0 auto;
  padding: 28px 0 42px;
}

.paper {
  padding: 38px 34px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--paper);
  box-shadow: 0 22px 44px rgba(78, 58, 48, 0.08);
}

h1, p, ul, strong { margin: 0; }

.eyebrow,
.section-label {
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
.date-line,
.details strong {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  margin-top: 12px;
  font-size: clamp(3.1rem, 9vw, 5rem);
  line-height: 0.88;
  font-weight: 600;
  text-align: center;
}

.date-line {
  margin-top: 10px;
  text-align: center;
  font-size: 1.4rem;
}

.lead-message,
.body-copy,
.details p,
.split li {
  color: var(--muted);
  line-height: 1.95;
}

.lead-message {
  max-width: 42ch;
  margin: 26px auto 0;
  text-align: center;
}

.photo-strip {
  margin: 28px 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 28px;
}

.photo-strip img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

.section {
  padding-top: 8px;
}

.body-copy {
  margin-top: 12px;
}

.details,
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.details article,
.split div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
}

.details strong {
  display: block;
  margin-top: 10px;
  font-size: 1.5rem;
}

.details p {
  margin-top: 8px;
}

.split ul {
  padding-left: 18px;
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 16px, 840px);
    padding: 16px 0 28px;
  }

  .paper {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .photo-strip img {
    height: 300px;
  }

  .details,
  .split {
    grid-template-columns: 1fr;
  }
}
