:root {
  --forest: #1b4d3e;
  --forest-deep: #0f2e25;
  --gold: #c9a96e;
  --paper: #faf9f5;
  --surface: #ffffff;
  --line: #ded8cb;
  --ink: #171717;
  --muted: #5f625d;
  --soft: #eef2ee;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.shell {
  min-height: 100vh;
  padding: 48px clamp(20px, 6vw, 88px);
}

.topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 72px;
  max-width: 1180px;
}

.brand {
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.back-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  text-transform: uppercase;
}

.hero {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  margin: 0 auto 72px;
  max-width: 1180px;
}

.eyebrow {
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  font-size: clamp(48px, 7vw, 92px);
  max-width: 820px;
}

.summary {
  color: #343833;
  font-size: clamp(18px, 2vw, 22px);
  margin-top: 28px;
  max-width: 720px;
}

.status-card {
  align-self: end;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.status-card h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

.status-list {
  display: grid;
  gap: 14px;
  list-style: none;
}

.status-list li {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  padding-top: 14px;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.card h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.card ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

.card li,
.card p {
  color: var(--muted);
  font-size: 15px;
}

.stack {
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 22px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero,
  .grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}
