@import url('https://fonts.googleapis.com/css2?family=Lora:wght@500;600;700&family=Raleway:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #17363a;
  --muted: #4f6664;
  --paper: #fff;
  --line: #c9d9d2;
  --teal: #123f3c;
  --gold: #d2a85c;
  --shadow: 0 18px 42px rgba(18, 63, 60, .14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Raleway, system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #f8fbf7, #e8f4ef 48%, #f5f2e8);
}

main {
  max-width: 980px;
  margin: auto;
  padding: 28px 20px 60px;
}

.sheet {
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  margin: 0 0 22px;
  box-shadow: var(--shadow);
  break-inside: avoid;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #b75036;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.eyebrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

h1,
h2,
h3 {
  font-family: Lora, Georgia, serif;
  color: var(--teal);
  line-height: 1.06;
  margin: 10px 0 12px;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  max-width: 12ch;
}

h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }

.lead,
p {
  color: var(--muted);
  line-height: 1.5;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.note {
  background: rgba(217, 111, 79, .1);
  border: 1px solid rgba(217, 111, 79, .28);
  border-radius: 8px;
  padding: 14px;
  color: #6a3c2c;
  font-weight: 800;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 12px;
}

th,
td {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px;
  min-height: 42px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #e8f4ef;
  color: var(--teal);
  font-weight: 900;
}

tr:last-child td,
tr:last-child th { border-bottom: 0; }

td:last-child,
th:last-child { border-right: 0; }

.page-break { break-after: page; }

@media (max-width: 720px) {
  .grid2 { grid-template-columns: 1fr; }
  h1 { max-width: 100%; }
}

@media print {
  @page { size: letter; margin: .25in; }

  body {
    background: #fff;
    font-size: 11px;
  }

  .sheet {
    box-shadow: none;
    margin: 0 0 12px;
    padding: 18px;
    page-break-inside: avoid;
  }

  h1 { font-size: 42px; }
  h2 { font-size: 24px; }
  .table { table-layout: fixed; }

  th,
  td {
    padding: 7px;
    font-size: 9.5px;
  }

  .page-break { break-after: page; }
}
