@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/brand/instrument-serif.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/brand/manrope.woff2") format("woff2");
}
:root {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #fafafa;
  background: #0a0a0a;
  font-size: 16px;
  font-synthesis: none;
  --accent: #ffbd4a;
  --line: #343434;
  --muted: #b3b3b3;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
header {
  max-width: 1180px;
  margin: auto;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fafafa;
  font-weight: 650;
  letter-spacing: -0.5px;
}
.mark {
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  font-size: 20px;
}
.quiet {
  color: var(--muted);
  font-size: 14px;
}
main {
  max-width: 1080px;
  margin: 36px auto;
  padding: 0 24px;
  min-height: 65vh;
}
footer {
  max-width: 1080px;
  margin: 40px auto;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.booking {
  display: grid;
  grid-template-columns: 310px 1fr;
  background: #161616;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 55px #00000030;
  overflow: hidden;
  min-height: 580px;
}
.intro {
  padding: 38px 30px;
  border-right: 1px solid var(--line);
  background: linear-gradient(160deg, #23201b, #161616 60%);
}
.avatar {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #322819;
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 650;
  margin-bottom: 25px;
}
.eyebrow {
  font-size: 14px;
  color: var(--muted);
  font-weight: 550;
  margin: 0 0 12px;
}
h1 {
  font-size: 36px;
  font-weight: 650;
  line-height: 1.13;
  letter-spacing: -1.2px;
  margin: 0 0 20px;
}
h2 {
  font-size: 23px;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
}
h3 {
  font-size: 17px;
  margin: 0 0 15px;
}
p {
  line-height: 1.65;
  color: var(--muted);
}
.intro p {
  font-size: 15px;
}
.meta {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.content {
  padding: 38px 34px;
}
.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}
.topline h2 {
  margin: 0;
}
.pill {
  font-size: 13px;
  color: var(--accent);
  background: #332919;
  padding: 7px 12px;
  border-radius: 30px;
  white-space: nowrap;
}
.durations {
  display: flex;
  gap: 8px;
  margin: 24px 0;
}
.durations button {
  padding: 10px 14px;
  flex: 1;
  font-size: 14px;
}
button,
.button {
  font: inherit;
  border: 1px solid var(--line);
  background: #161616;
  border-radius: 9px;
  padding: 12px 16px;
  cursor: pointer;
  color: #fafafa;
  text-align: center;
  transition:
    background 0.15s,
    border 0.15s;
  display: inline-block;
}
button:hover,
.button:hover {
  background: #29251d;
  border-color: #bd8d3a;
  text-decoration: none;
}
button:disabled {
  cursor: default;
  opacity: 0.48;
}
button.selected {
  border-color: var(--accent);
  color: var(--accent);
  background: #332919;
}
.primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.primary:hover {
  background: #ffcb70;
  color: white;
}
.danger {
  color: #ff9b91;
}
.full {
  width: 100%;
}
label {
  display: block;
  font-size: 14px;
  font-weight: 550;
  margin: 0 0 8px;
}
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: #161616;
  border: 1px solid #494949;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  min-width: 0;
}
textarea {
  resize: vertical;
  min-height: 90px;
}
input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid #ffbd4a;
  outline-offset: 2px;
}
.field {
  margin-bottom: 20px;
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}
.calendar-head strong {
  font-size: 16px;
}
.calendar-head button {
  padding: 7px 11px;
}
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.weekday {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  padding: 10px 0;
}
.day {
  border-color: transparent;
  padding: 10px 0;
  font-size: 15px;
}
.day:disabled {
  background: #171717;
  color: #939393;
}
.day.selected {
  background: var(--accent);
  color: white;
}
.times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0 24px;
}
.times button {
  padding: 10px;
  font-size: 14px;
}
.note {
  font-size: 14px;
  margin: 12px 0;
  color: var(--muted);
}
.notice {
  background: #332919;
  color: #ffd999;
  border-radius: 10px;
  padding: 15px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
  overflow-wrap: anywhere;
}
.error {
  background: #392220;
  color: #ffada3;
}
.success {
  background: #183424;
  color: #a3e5bb;
}
.back {
  border: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.selected-time {
  padding: 18px;
  background: #202020;
  border-radius: 12px;
  margin-bottom: 26px;
  line-height: 1.8;
}
.small-card {
  max-width: 490px;
  margin: 65px auto;
  background: #161616;
  border: 1px solid var(--line);
  padding: 36px;
  border-radius: 20px;
}
.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.admin-top h1 {
  font-size: 32px;
  margin: 0;
}
.admin-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
}
.panel {
  background: #161616;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 24px;
}
.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 400;
  margin: 0;
}
.check input {
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
}
.booking-row {
  padding: 17px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.booking-row strong {
  font-size: 16px;
}
.booking-row p {
  margin: 5px 0;
}
.status {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
}
code {
  font-size: 13px;
  overflow-wrap: anywhere;
}
#message:empty {
  display: none;
}
.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.connection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.connection p {
  margin: 0;
}
@media (max-width: 800px) {
  header {
    height: 80px;
    padding: 0 20px;
  }
  main {
    margin: 15px auto;
    padding: 0 16px;
  }
  .booking {
    grid-template-columns: 1fr;
  }
  .intro {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 25px;
  }
  .intro h1 {
    font-size: 30px;
    margin-bottom: 12px;
  }
  .avatar {
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin-bottom: 16px;
  }
  .intro p {
    margin-bottom: 0;
  }
  .meta {
    margin-top: 15px;
    padding-top: 12px;
  }
  .durations {
    margin: 18px 0 0;
  }
  .content {
    padding: 26px 22px;
  }
  .admin-grid {
    grid-template-columns: 1fr;
  }
  .admin-top {
    align-items: flex-start;
    gap: 16px;
  }
  .row {
    grid-template-columns: 1fr;
  }
  .small-card {
    margin: 25px auto;
    padding: 25px;
  }
  .topline {
    align-items: flex-start;
  }
  .times {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Academy brand: sourced from analyticsautomation.academy. */
:root {
  color-scheme: dark;
}
header {
  height: 112px;
  border-bottom: 1px solid #242424;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.03;
  letter-spacing: -0.5px;
  color: #fff;
  text-align: center;
}
.brand:hover {
  text-decoration: none;
  color: var(--accent);
}
h1,
h2,
h3 {
  font-family: "Manrope", ui-sans-serif, sans-serif;
  font-weight: 700;
}
.intro h1 {
  color: var(--accent);
  font-size: 34px;
}
.booking {
  border-radius: 18px;
  border-color: #363229;
}
.host-photo {
  display: block;
  width: 100%;
  height: 176px;
  object-fit: cover;
  object-position: 45% 30%;
  border-radius: 12px;
  margin-bottom: 26px;
  border: 1px solid #454039;
}
.primary,
.day.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #17120a;
  font-weight: 650;
}
.primary:hover {
  background: #ffcb70;
  color: #17120a;
}
.pill {
  color: #ffcd78;
  border: 1px solid #61491f;
}
button.selected {
  color: #ffcd78;
}
.day.selected {
  color: #17120a;
}
.intro .eyebrow {
  font-size: 14px;
  color: #d4cbbd;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  border-top: 1px solid #242424;
  padding-top: 25px;
}
footer a {
  color: #b3b3b3;
}
@media (max-width: 800px) {
  header {
    height: 94px;
    gap: 18px;
  }
  .brand {
    font-size: 23px;
  }
  header > .quiet {
    font-size: 13px;
    white-space: nowrap;
  }
  .host-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-position: 44% 25%;
    margin-bottom: 20px;
  }
  .intro h1 {
    font-size: 30px;
  }
  footer {
    flex-direction: column;
    text-align: center;
    align-items: center;
    font-size: 13px;
  }
  .connection {
    flex-wrap: wrap;
  }
}

.host-photo {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid #61491f;
}

#times-label:empty {
  display: none;
}
