:root {
  --pine: #2E4A3B; --pine-soft: #6B8674; --amber: #A85E1E;
  --paper: #F6F3EC; --ink: #211F1A; --ink-soft: #5B564C; --rule: #DDD6C7;
}
* { box-sizing: border-box; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--paper); color: var(--ink); margin: 0; padding: 20px 16px 80px;
  font-size: 16px; line-height: 1.5;
}
.wrap { max-width: 900px; width: 85%; margin: 0 auto; }
.brand-header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding-bottom: 14px; margin-bottom: 20px; border-bottom: 1px solid var(--rule);
}
.brand-header .brand-clinic { display: flex; align-items: center; gap: 8px; }
.brand-header .brand-clinic img { height: 75px; width: 75px; object-fit: contain; }
.brand-header .brand-clinic span { font-weight: 600; font-size: 14px; color: var(--ink-soft); }
.brand-header .brand-photographer img { height: 44px; width: auto; object-fit: contain; display: block; }
h1 { font-size: 24px; margin: 0 0 6px; }
.sub { color: var(--ink-soft); margin: 0 0 24px; }
label { display: block; font-weight: 600; margin: 16px 0 6px; }
input[type=text], input[type=email], input[type=tel], select, textarea {
  width: 100%; padding: 12px; border: 1px solid var(--rule); border-radius: 6px; font-size: 16px;
}
.consent { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; margin: 14px 0; }
.consent input { width: auto; margin-top: 4px; }
.slot-picker { margin: 8px 0 4px; }
.slot-date-group { margin-bottom: 16px; }
.slot-date-label {
  font-weight: 600; font-size: 13px; color: var(--ink-soft); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .03em;
}
.slot-times { display: flex; flex-wrap: wrap; gap: 8px; }
.slot-option { display: inline-flex; margin: 0; font-weight: 400; cursor: pointer; }
.slot-option input[type=radio] {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.slot-option span {
  display: inline-block; padding: 10px 16px; border: 1px solid var(--rule); border-radius: 6px;
  background: white; font-size: 15px; transition: background .1s, color .1s, border-color .1s;
}
.slot-option input:checked + span { background: var(--pine); color: white; border-color: var(--pine); }
.slot-option input:focus-visible + span { outline: 2px solid var(--pine); outline-offset: 2px; }
button, .btn {
  background: var(--pine); color: white; border: none; padding: 14px 22px;
  border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration: none;
  display: inline-block; margin-top: 10px;
}
button:disabled { opacity: 0.5; }
.btn.outline { background: transparent; color: var(--pine); border: 1px solid var(--pine); }
.card { background: white; border: 1px solid var(--rule); border-radius: 8px; padding: 16px; margin-bottom: 12px; }
.card.slot-partial { background: #FBF3EA; border-left: 4px solid var(--amber); }
.card.slot-full { background: #EAF0EC; border-left: 4px solid var(--pine); }
.booking-detail { color: var(--ink-soft); font-size: 14px; margin-top: 8px; }
.card-link { text-decoration: none; color: inherit; display: block; }
.card-link .card { transition: border-color .1s; }
.card-link:hover .card { border-color: var(--pine); }
.row { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.pill { font-family: ui-monospace, monospace; font-size: 12px; padding: 3px 8px; border-radius: 20px; background: var(--pine); color: white; }
.pill.walkup { background: var(--amber); }
.pill.status { background: var(--rule); color: var(--ink-soft); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; margin: 16px 0; }
.grid img { width: 100%; border-radius: 6px; border: 1px solid var(--rule); }
.error { color: #b23; margin: 10px 0; }
a { color: var(--pine); }
