:root {
  --bg-top: #ece6db;
  --bg-bottom: #d8cebf;
  --paper: rgba(253, 250, 245, 0.92);
  --ink: #1f2430;
  --muted: #5e625f;
  --line: rgba(75, 64, 48, 0.18);
  --accent: #6d4c31;
  --accent-soft: #bda27e;
  --shadow: 0 24px 60px rgba(50, 41, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", Georgia, serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.62), transparent 34%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(109, 76, 49, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 76, 49, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 80%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-card {
  width: min(760px, 100%);
  padding: 48px 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(10px);
}

.hero-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(109, 76, 49, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(241, 234, 223, 0.95));
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 600;
  line-height: 0.96;
}

.lead {
  width: min(560px, 100%);
  margin: 20px auto 34px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
}

.details {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(140px, 180px) 1fr;
  align-items: start;
  gap: 18px;
  padding: 18px 0;
  text-align: left;
}

.detail-row + .detail-row {
  border-top: 1px solid var(--line);
}

dt {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

dd {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
}

.note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

@media (max-width: 640px) {
  .hero-card {
    padding: 36px 24px;
    border-radius: 20px;
  }

  .hero-mark {
    width: 110px;
    height: 110px;
  }

  .lead {
    font-size: 1.04rem;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
