:root {
  color-scheme: light;
  --ink: #14202e;
  --gold: #a8863c;
  --paper: #faf7f2;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.6 system-ui,
    sans-serif;
}
.wrap {
  max-width: 800px;
  margin: 36px auto;
  padding: 0 20px;
}
h1,
h2 {
  font-family: Georgia, serif;
  line-height: 1.2;
}
h1 {
  font-size: 2.4rem;
}
a {
  color: #725819;
}
fieldset,
.panel {
  background: white;
  border: 1px solid #d4d7dc;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}
legend {
  font-weight: 700;
}
label {
  display: block;
  margin: 12px 0 5px;
}
input,
textarea,
select,
button {
  font: inherit;
  padding: 10px;
  border: 1px solid #9da5ad;
  border-radius: 4px;
}
input:not([type="checkbox"]),
textarea,
select {
  width: 100%;
}
input[type="checkbox"] {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
button,
.button {
  background: var(--ink);
  color: white;
  cursor: pointer;
  border: 0;
  padding: 12px 18px;
  text-decoration: none;
  display: inline-block;
  margin: 4px 4px 4px 0;
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
.note {
  font-size: 0.9rem;
  color: #495564;
}
.warning {
  background: #fff2df;
  border: 2px solid #a96400;
  padding: 16px;
}
.error {
  color: #9e1a1a;
}
#msg {
  white-space: pre-wrap;
  margin: 16px 0;
  font-weight: 600;
}
[hidden],
.hide {
  display: none !important;
}
.row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.row > * {
  flex: 1;
}
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.check input {
  flex: none;
  margin-top: 6px;
}
.check label {
  margin: 0;
}
.booking {
  border-top: 2px solid #d4d7dc;
  margin: 20px 0;
  padding: 16px 0;
}
pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid #a8863c;
  outline-offset: 3px;
}
