:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f7f4;
  color: #17211c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

button, input, textarea, select {
  font: inherit;
}

button {
  border: 1px solid #17211c;
  background: #17211c;
  color: #fff;
  min-height: 42px;
  padding: 0 14px;
  cursor: pointer;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 0 22px;
}

.nav button {
  background: transparent;
  color: #17211c;
}

.mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: #d9ef65;
  border: 1px solid #17211c;
}

.view {
  display: none;
  padding: 28px;
  border: 1px solid #cdd6ca;
  background: #fff;
}

.view.active {
  display: block;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  color: #4e6b5a;
}

h1, h2 {
  margin: 0 0 14px;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.98;
}

h2 {
  font-size: 28px;
}

.lead {
  max-width: 760px;
  font-size: 20px;
  line-height: 1.45;
}

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

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input, textarea, select {
  border: 1px solid #aeb8aa;
  padding: 12px;
  background: #fbfcfa;
}

.panel label:last-of-type {
  grid-column: 1 / -1;
}

.notice, .package {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #d4ddcf;
  background: #eef7ec;
}

dl {
  display: grid;
  grid-template-columns: minmax(120px, 220px) 1fr;
  gap: 10px;
}

dt {
  font-weight: 800;
}

dd {
  margin: 0;
}

@media (max-width: 760px) {
  .panel, dl {
    grid-template-columns: 1fr;
  }
  .view {
    padding: 20px;
  }
}
