:root {
  color-scheme: light;
  --bg: #f5efe6;
  --surface: rgba(252, 249, 243, 0.86);
  --surface-strong: rgba(255, 252, 247, 0.94);
  --text-primary: #1c160f;
  --text-secondary: #5d4f41;
  --border: rgba(84, 63, 44, 0.16);
  --accent: #b5522d;
  --accent-soft: rgba(181, 82, 45, 0.14);
  --shadow: 0 24px 80px rgba(48, 28, 10, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(219, 144, 89, 0.22), transparent 34%),
    radial-gradient(circle at right center, rgba(140, 76, 48, 0.16), transparent 28%),
    linear-gradient(180deg, #fbf6ef 0%, #efe2d1 100%);
  color: var(--text-primary);
}

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

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.8;
}

.ambient-left {
  width: 300px;
  height: 300px;
  left: -60px;
  top: 10vh;
  background: rgba(181, 82, 45, 0.16);
}

.ambient-right {
  width: 380px;
  height: 380px;
  right: -120px;
  bottom: 8vh;
  background: rgba(82, 52, 28, 0.12);
}

.hero-card {
  position: relative;
  width: min(880px, 100%);
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(145deg, var(--surface-strong) 0%, var(--surface) 100%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.lede {
  margin: 24px 0 0;
  max-width: 42rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.6;
  color: var(--text-secondary);
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(181, 82, 45, 0.15);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.detail-card {
  padding: 20px;
  border: 1px solid rgba(84, 63, 44, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
}

.detail-card h2 {
  margin: 0 0 10px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.detail-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

@media (max-width: 720px) {
  .page-shell {
    padding: 18px;
  }

  .hero-card {
    padding: 28px;
    border-radius: 24px;
  }

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