:root {
  color-scheme: light;
  --ink: #152524;
  --muted: #5d6b68;
  --paper: #f4f1e9;
  --card: #fffdf8;
  --line: #d7d1c4;
  --evergreen: #174f48;
  --evergreen-dark: #0d3732;
  --gold: #c9923e;
  --danger: #8e2f2f;
  --success: #256b46;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
.shell {
  width: min(100% - 2rem, 68rem);
  margin-inline: auto;
}
.site-header {
  background: var(--evergreen-dark);
  color: white;
  border-bottom: 4px solid var(--gold);
}
.header-inner {
  min-height: 6rem;
  display: flex;
  align-items: center;
}
.eyebrow,
.kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow {
  color: #f0c77f;
}
.brand {
  margin: 0.15rem 0 0;
  font-family: Georgia, serif;
  font-size: 1.12rem;
}
.hero {
  padding: 5rem 0 2.5rem;
  max-width: 48rem;
}
.hero.compact {
  padding-top: 3rem;
}
.kicker {
  color: var(--evergreen);
}
h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}
h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2.35rem, 7vw, 4.8rem);
  letter-spacing: -0.035em;
}
.compact h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
}
h2 {
  margin-top: 0;
  font-size: 1.55rem;
}
.lede {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 42rem;
}
.card {
  padding: clamp(1.2rem, 4vw, 2rem);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  box-shadow: 0 0.6rem 1.8rem rgb(20 38 36 / 0.07);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.wide {
  grid-column: 1 / -1;
}
label {
  display: grid;
  gap: 0.4rem;
  color: var(--evergreen-dark);
  font-weight: 700;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid #aaa497;
  border-radius: 0.35rem;
  padding: 0.76rem 0.8rem;
  background: white;
  color: var(--ink);
  font: inherit;
}
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgb(201 146 62 / 0.32);
  border-color: var(--evergreen);
}
button,
.button {
  display: inline-block;
  border: 0;
  border-radius: 0.35rem;
  padding: 0.78rem 1.1rem;
  background: var(--evergreen);
  color: white;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
button:hover,
.button:hover {
  background: var(--evergreen-dark);
}
button.secondary {
  padding: 0.52rem 0.7rem;
  background: transparent;
  color: var(--danger);
  border: 1px solid currentColor;
}
.actions {
  display: flex;
  justify-content: flex-end;
}
.notice {
  margin: 0 0 1rem;
  padding: 1rem 1.2rem;
  border-left: 5px solid;
  background: var(--card);
}
.notice.success {
  border-color: var(--success);
}
.notice.error {
  border-color: var(--danger);
}
.section {
  padding: 2.5rem 0;
}
.table-wrap {
  overflow-x: auto;
}
.table-wrap.flush {
  padding: 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
}
th,
td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
th {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pill {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #e3eee9;
  color: var(--evergreen-dark);
  font-size: 0.82rem;
  font-weight: 800;
}
.footer {
  padding: 3rem 0;
  color: var(--muted);
  font-size: 0.85rem;
}
@media (max-width: 42rem) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .wide {
    grid-column: auto;
  }
  h1 {
    font-size: 2.65rem;
  }
}
