:root {
  --background: oklch(97.5% 0.014 62);
  --foreground: oklch(23.5% 0.09 300);
  --card: oklch(100% 0 0);
  --primary: oklch(53% 0.225 293);
  --primary-strong: oklch(45% 0.22 293);
  --secondary: oklch(90.2% 0.168 118);
  --muted: oklch(95.2% 0.014 62);
  --muted-foreground: oklch(47.5% 0.045 300);
  --border: oklch(90.5% 0.018 62);
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  isolation: isolate;
  background: var(--background);
  color: var(--foreground);
  font:
    600 14px/1.7 Montserrat,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(oklch(53% 0.225 293 / 0.07) 1px, transparent 1px),
    linear-gradient(90deg, oklch(53% 0.225 293 / 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: linear-gradient(135deg, #000, transparent 66%);
  mask-image: linear-gradient(135deg, #000, transparent 66%);
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
.book-nav {
  width: min(100% - 40px, 1280px);
  min-height: 84px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--border);
}
.book-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.book-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.book-brand span {
  overflow: hidden;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.book-brand b,
.book-nav > a:last-child span {
  color: var(--primary);
}
.book-nav > a:last-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--muted-foreground);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.book-nav > a:last-child span {
  font-size: 16px;
}
.book-layout {
  width: min(100% - 64px, 1180px);
  margin: 64px auto 96px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.book-story {
  position: sticky;
  top: 32px;
  padding-top: 30px;
}
.book-eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.book-story h1 {
  max-width: 620px;
  margin: 22px 0 24px;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.book-story h1 span {
  color: var(--primary);
}
.book-story > p:not(.book-eyebrow, .book-lead, .book-stack) {
  max-width: 500px;
  margin: 0;
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 1.85;
}
.book-story p.book-lead {
  max-width: 510px;
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}
.book-stack {
  margin: 28px 0 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.book-expect {
  max-width: 500px;
  margin-top: 34px;
  padding: 22px 0;
  border-block: 1px solid var(--border);
}
.book-expect > .book-eyebrow {
  margin-bottom: 12px;
  color: var(--muted-foreground);
  font-size: 9px;
}
.book-expect > div {
  display: flex;
  align-items: center;
  gap: 14px;
}
.book-expect > div > span {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--muted);
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
}
.book-expect > div > p {
  margin: 7px 0;
  font-size: 13px;
  font-weight: 700;
}
.book-email {
  display: inline-flex;
  margin-top: 26px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-underline-offset: 5px;
}
.book-card {
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}
.book-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.book-pill {
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--muted);
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.book-star {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--secondary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.book-card h2 {
  margin: 26px 0 7px;
  font-size: clamp(29px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.book-intro {
  margin: 0 0 24px;
  color: var(--muted-foreground);
  font-size: 13px;
}
.book-notice {
  display: flex;
  gap: 13px;
  padding: 15px 17px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--muted);
}
.book-notice > span {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--card);
  color: var(--primary);
  font-size: 14px;
}
.book-notice p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 11px;
  line-height: 1.7;
}
.book-notice strong {
  color: var(--foreground);
  font-weight: 800;
}
.book-upcoming-head {
  margin: 30px 0 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.book-upcoming-head strong {
  font-size: 12px;
  font-weight: 800;
}
.book-upcoming-head > span {
  color: var(--muted-foreground);
  font-size: 10px;
  font-weight: 600;
}
.book-next-slots {
  margin-bottom: 26px;
}
.book-browse-fields {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
fieldset {
  min-width: 0;
  margin: 32px 0 0;
  padding: 0;
  border: 0;
}
legend {
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 800;
}
legend > span {
  width: 27px;
  height: 27px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--foreground);
  color: var(--background);
  font-size: 10px;
}
.book-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.book-fields label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
}
.book-fields label > small {
  color: var(--muted-foreground);
  font-size: 10px;
  font-weight: 600;
}
.book-fields label:has(small) > small {
  margin-top: -5px;
}
.book-full {
  grid-column: 1/-1;
}
input,
select,
textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--background);
  color: var(--foreground);
  font-size: 12px;
  font-weight: 600;
}
textarea {
  resize: vertical;
  line-height: 1.65;
}
input:hover,
select:hover,
textarea:hover {
  border-color: var(--primary);
}
textarea::placeholder {
  color: var(--muted-foreground);
}
.book-privacy {
  margin: 24px 0 17px;
  color: var(--muted-foreground);
  font-size: 10px;
  line-height: 1.75;
}
.book-submit,
.book-return {
  width: 100%;
  min-height: 50px;
  padding: 14px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--background);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease;
}
.book-submit:hover,
.book-return:hover {
  transform: translateY(-2px);
  background: var(--primary-strong);
}
.book-submit:disabled {
  transform: none;
  opacity: 0.5;
  cursor: wait;
}
.book-submit > span:last-child {
  font-size: 18px;
}
.book-error {
  color: #a43c4a;
  font-size: 12px;
}
.book-error:empty {
  display: none;
}
.book-honey {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.book-next-slots,
:is(#booking-slots) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.book-next-slots > p,
#booking-slots > p {
  grid-column: 1/-1;
  margin: 0;
  color: var(--muted-foreground);
  font-size: 12px;
}
.book-slot {
  position: relative;
  cursor: pointer;
}
.book-slot input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
}
.book-slot > span {
  padding: 11px;
  display: block;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted-foreground);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}
.book-slot:hover > span {
  border-color: var(--primary);
  color: var(--foreground);
}
.book-slot:has(input:checked) > span {
  border-color: var(--primary);
  background: var(--secondary);
  color: var(--foreground);
}
.book-slot:has(input:focus-visible) > span {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}
#booking-success {
  padding: 28px 0 0;
  font-size: 13px;
}
#booking-success:focus {
  outline: none;
}
.book-success-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--secondary);
  font-size: 24px;
  font-weight: 800;
}
#booking-success h3 {
  margin: 24px 0 8px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.025em;
}
#booking-success > p {
  color: var(--muted-foreground);
}
#booking-summary {
  margin: 20px 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--muted);
  font-size: 12px;
}
#booking-summary a {
  color: var(--primary);
  font-weight: 800;
}
.book-success-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.book-success-actions a {
  text-underline-offset: 4px;
}
#booking-success .book-return {
  width: max-content;
}
.book-footer {
  width: min(100% - 64px, 1180px);
  margin: auto;
  padding: 30px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 10px;
}
.book-footer > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.book-footer > div:first-child > span:first-child {
  color: var(--foreground);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.book-privacy-link {
  align-self: center;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  text-underline-offset: 4px;
}
.book-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -12px 0;
  padding: 0;
  list-style: none;
}
.book-socials a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--muted-foreground);
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}
.book-socials a:hover {
  border-color: var(--primary);
  background: var(--card);
  color: var(--primary);
}
.book-socials a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.book-socials svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 980px) {
  .book-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
    gap: 38px;
  }
  .book-fields {
    grid-template-columns: 1fr;
  }
  .book-full {
    grid-column: auto;
  }
}
@media (max-width: 780px) {
  .book-layout {
    width: min(100% - 40px, 620px);
    margin: 34px auto 64px;
    grid-template-columns: 1fr;
  }
  .book-card {
    grid-row: 1;
  }
  .book-story {
    position: static;
    grid-row: 2;
    padding-top: 12px;
  }
  .book-story h1 {
    font-size: clamp(40px, 12vw, 58px);
  }
  .book-expect {
    max-width: none;
  }
  .book-fields {
    grid-template-columns: 1fr 1fr;
  }
  .book-full {
    grid-column: 1/-1;
  }
  .book-footer {
    width: min(100% - 40px, 620px);
    flex-direction: column;
    gap: 8px;
  }
  .book-socials {
    margin: 8px 0 0;
  }
}
@media (max-width: 480px) {
  .book-nav {
    min-height: 74px;
  }
  .book-brand span {
    font-size: 13px;
  }
  .book-nav > a:last-child {
    font-size: 10px;
  }
  .book-layout {
    width: min(100% - 28px, 620px);
    margin-top: 20px;
  }
  .book-card {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .book-fields,
  .book-next-slots,
  :is(#booking-slots) {
    grid-template-columns: 1fr;
  }
  .book-full,
  .book-next-slots > p,
  #booking-slots > p {
    grid-column: auto;
  }
  .book-footer {
    width: min(100% - 40px, 620px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .book-submit,
  .book-return {
    transition: none;
  }
}
