:root {
  --ink: #17211c;
  --muted: #68756f;
  --paper: #fbf6ec;
  --panel: #fffaf1;
  --line: #d7cdbb;
  --accent: #11644d;
  --accent-dark: #0b4738;
  --accent-2: #d58a2a;
  --danger: #8c2f24;
  --shadow: 0 24px 70px rgba(35, 31, 24, .16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, #fff6d7 0 18%, transparent 19%),
    radial-gradient(circle at 88% 12%, #cfe7dc 0 14%, transparent 15%),
    linear-gradient(135deg, #f4ead8, #eef3eb 45%, #f8efe1);
  font-family: Georgia, "Times New Roman", serif;
}

body {
  min-height: 100vh;
  padding: 28px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .04) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px);
  background-size: 36px 36px;
}

.shell {
  width: min(980px, 100%);
  margin: min(7vh, 56px) auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, .82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  overflow: hidden;
}

.side {
  padding: 48px;
  background: linear-gradient(160deg, rgba(17, 100, 77, .95), rgba(23, 33, 28, .94));
  color: #f7f2e8;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.seal {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: .94;
  margin: 70px 0 18px;
  font-weight: 500;
}

.hero p {
  font-size: 17px;
  line-height: 1.7;
  color: #d7e4dc;
  max-width: 390px;
}

.ribbon {
  font: 13px/1.6 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #bfcec7;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: 22px;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 5px rgba(213, 138, 42, .14);
}

.card {
  padding: 52px 48px;
  background: linear-gradient(180deg, rgba(255, 250, 241, .98), rgba(255, 247, 232, .94));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font: 700 12px/1.4 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

h2 {
  font-size: 30px;
  margin: 0 0 8px;
  font-weight: 500;
}

.sub,
.body-copy,
.meta,
label,
input,
.row,
.notice,
.links,
.btn,
.pill,
.list,
.mini-card {
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sub {
  margin: 0 0 30px;
  color: var(--muted);
  line-height: 1.6;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #47544e;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 18px 0 8px;
}

input {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffdf8;
  border-radius: 14px;
  padding: 14px 15px;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: .18s border, .18s box-shadow;
}

input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(17, 100, 77, .12);
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin: 16px 0 24px;
  font-size: 13px;
  color: var(--muted);
}

.btn {
  display: inline-block;
  text-align: center;
  width: 100%;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  padding: 15px 18px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(17, 100, 77, .22);
}

.btn:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

.notice {
  margin-top: 22px;
  border: 1px solid #ead8b8;
  background: #fff8e9;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.55;
  color: #725b32;
}

.links {
  margin-top: 26px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.page {
  width: min(980px, 100%);
  margin: min(7vh, 56px) auto;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, .9);
  box-shadow: var(--shadow);
  border-radius: 28px;
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 32px;
  color: #f7f2e8;
  background: linear-gradient(160deg, rgba(17, 100, 77, .96), rgba(23, 33, 28, .95));
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font: 13px/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.topbar a {
  color: #eaf2ee;
}

.content {
  padding: 42px 48px 48px;
}

.content h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  margin: 0 0 18px;
  font-weight: 500;
}

.body-copy {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
  max-width: 760px;
}

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

.mini-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, .74);
  padding: 18px;
  line-height: 1.6;
}

.mini-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #c9ddcf;
  color: #0d5c45;
  background: #edf8ef;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.list li {
  border-left: 3px solid var(--accent-2);
  padding: 8px 0 8px 14px;
  color: var(--muted);
  line-height: 1.6;
}

.meta {
  margin-top: 28px;
  color: #7a827d;
  font-size: 13px;
}

@media (max-width: 760px) {
  body {
    padding: 16px;
  }

  .shell {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .side {
    min-height: 300px;
    padding: 34px;
  }

  .hero h1 {
    margin: 44px 0 14px;
  }

  .card,
  .content {
    padding: 34px 24px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

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