:root {
  --page-bg: #f2ede3;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --ink: #121212;
  --muted: #57514a;
  --line: rgba(18, 18, 18, 0.14);
  --accent: #8f4e23;
  --accent-ink: #fff9f4;
  --shadow: 0 24px 80px rgba(69, 45, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  background:
    radial-gradient(circle at top left, rgba(176, 116, 67, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(110, 87, 58, 0.12), transparent 32%),
    linear-gradient(180deg, #efe6d8 0%, #f6f1e8 54%, #f3eee7 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "IBM Plex Mono", "SFMono-Regular", "Menlo", "Courier New", monospace;
  line-height: 1.6;
}

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

.entry-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.entry-hero {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.entry-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.entry-label,
.entry-status {
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.entry-label,
.entry-status {
  color: var(--muted);
}

.entry-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.entry-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.entry-copy {
  width: min(640px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.entry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.entry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.entry-button:hover {
  transform: translateY(-1px);
}

.entry-button.primary {
  background: var(--ink);
  color: var(--accent-ink);
  border-color: var(--ink);
}

.entry-button.secondary {
  background: transparent;
  color: var(--ink);
}

.entry-button.secondary:hover {
  background: var(--surface-strong);
}

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

@media (max-width: 620px) {
  .entry-shell {
    width: min(100% - 20px, 1120px);
    padding: 18px 0 24px;
  }

  .entry-topbar {
    margin-bottom: 24px;
  }

  .entry-actions {
    flex-direction: column;
  }

  .entry-button {
    width: 100%;
  }
}
