/* GHLOps.com — native dark booking experience (Meeting / OnboardingCall / ClientMeeting)
   Loads AFTER site.css; consumes its :root tokens. Author: Ricky Patel */

/* ── Conversion hero: centered, full-width, flows into the booking stage ── */
.bk-hero {
  background:
    radial-gradient(1100px 560px at 50% -25%, #1e2b52 0%, var(--ink) 62%),
    var(--ink);
  color: #ebf0fc;
  text-align: center;
  padding: 72px 0 20px;
}
.bk-hero .crumbs {
  justify-content: center;
  display: flex;
}
.bk-hero .eyebrow {
  color: var(--blue);
}
.bk-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  color: #fff;
  max-width: 900px;
  margin: 16px auto 18px;
}
.bk-hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.bk-hero .lede {
  color: var(--text-light-dim);
  font-size: 1.12rem;
  max-width: 700px;
  margin: 0 auto;
}
.bk-hero .proof {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(235, 240, 252, 0.62);
  margin-top: 20px;
}
.bk-hero .proof b {
  color: var(--gold);
}

/* ── Stage: dark section holding the booking card ── */
.bk-stage {
  background:
    radial-gradient(900px 520px at 50% 115%, #1b2648 0%, var(--ink) 62%),
    var(--ink);
  padding: 44px 24px 96px;
}
.bk-fallback {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(235, 240, 252, 0.5);
  text-align: center;
  margin: 18px auto 0;
  max-width: 600px;
}
.bk-fallback a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Card ── */
.bk {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--ink-2), #0d1428);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow:
    0 40px 90px -40px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
}
@media (max-width: 860px) {
  .bk {
    grid-template-columns: 1fr;
  }
}

/* Summary panel (left) */
.bk-sum {
  padding: 30px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
}
@media (max-width: 860px) {
  .bk-sum {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    padding: 24px 24px 18px;
  }
}
.bk-sum .s-kicker {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}
.bk-sum h2 {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.2;
}
.bk-sum .s-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-light-dim);
  font-size: 0.9rem;
}
.bk-sum .s-row svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}
.bk-sum .s-picked {
  margin-top: auto;
  padding: 14px 16px;
  border: 1px solid rgba(217, 164, 65, 0.4);
  border-radius: 14px;
  background: rgba(217, 164, 65, 0.08);
  color: #fff;
  font-size: 0.92rem;
  display: none;
}
.bk-sum .s-picked.on {
  display: block;
}
.bk-sum .s-picked .p-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

/* Main pane (right) */
.bk-main {
  padding: 30px 32px;
  min-height: 520px;
}
@media (max-width: 640px) {
  .bk-main {
    padding: 24px 18px;
  }
}

/* Step 1 — date & time */
.bk-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.bk-cal-head .m-label {
  font-family: var(--font-display);
  font-weight: 640;
  color: #fff;
  font-size: 1.15rem;
}
.bk-nav {
  display: flex;
  gap: 8px;
}
.bk-nav button {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #ebf0fc;
  cursor: pointer;
  font-size: 1rem;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}
.bk-nav button:hover:not(:disabled) {
  border-color: var(--gold);
  background: rgba(217, 164, 65, 0.1);
}
.bk-nav button:disabled {
  opacity: 0.3;
  cursor: default;
}
.bk-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 168px;
  gap: 22px;
}
@media (max-width: 640px) {
  .bk-grid-wrap {
    grid-template-columns: 1fr;
  }
}
.bk-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.bk-dow span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(235, 240, 252, 0.42);
  text-align: center;
  padding: 6px 0;
}
.bk-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bk-days button {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid transparent;
  background: transparent;
  color: #ebf0fc;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
  position: relative;
}
.bk-days button:hover:not(:disabled):not(.sel) {
  border-color: rgba(217, 164, 65, 0.55);
  background: rgba(217, 164, 65, 0.08);
}
.bk-days button:disabled {
  color: rgba(235, 240, 252, 0.18);
  cursor: default;
}
.bk-days button.avail::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.bk-days button.sel {
  background: linear-gradient(
    180deg,
    #e9bc5c,
    var(--gold) 55%,
    var(--gold-deep)
  );
  color: #221602;
  border-color: transparent;
  font-weight: 700;
}
.bk-days button.sel::after {
  background: #221602;
}
.bk-days .pad {
  visibility: hidden;
}
/* Slot column */
.bk-slots {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(217, 164, 65, 0.4) transparent;
}
.bk-slots .sl-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(235, 240, 252, 0.5);
  padding-bottom: 2px;
}
.bk-slots button {
  padding: 11px 10px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #ebf0fc;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    transform 0.15s ease;
}
.bk-slots button:hover {
  border-color: var(--gold);
  background: rgba(217, 164, 65, 0.1);
  transform: translateY(-1px);
}
.bk-slots .sl-empty {
  color: rgba(235, 240, 252, 0.45);
  font-size: 0.86rem;
  padding: 10px 2px;
}
@media (max-width: 640px) {
  .bk-slots {
    max-height: none;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .bk-slots button {
    flex: 1 1 30%;
  }
  .bk-slots .sl-label {
    flex-basis: 100%;
  }
}
/* Timezone */
.bk-tz {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bk-tz .tz-ico {
  font-size: 0.95rem;
}
.bk-tz select {
  flex: 1;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #ebf0fc;
  font-family: var(--font-body);
  font-size: 0.86rem;
  padding: 9px 12px;
  cursor: pointer;
}
.bk-tz select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.bk-tz select option {
  background: var(--ink-2);
  color: #ebf0fc;
}

/* Step 2 — details form */
.bk-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: rgba(235, 240, 252, 0.6);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 18px;
  padding: 4px 0;
}
.bk-back:hover {
  color: var(--gold);
}
.bk-form-title {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.bk-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 14px;
}
@media (max-width: 640px) {
  .bk-form {
    grid-template-columns: 1fr;
  }
}
.bk-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bk-field.full {
  grid-column: 1 / -1;
}
.bk-field label {
  color: #ebf0fc;
  font-size: 0.84rem;
  font-weight: 600;
}
.bk-field label .req {
  color: var(--gold);
}
.bk-field input,
.bk-field select,
.bk-field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.94rem;
  padding: 12px 14px;
  transition: border-color 0.15s ease;
  width: 100%;
}
.bk-field input::placeholder,
.bk-field textarea::placeholder {
  color: rgba(235, 240, 252, 0.35);
}
.bk-field input:focus,
.bk-field select:focus,
.bk-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.bk-field select option {
  background: var(--ink-2);
  color: #ebf0fc;
}
.bk-field textarea {
  min-height: 92px;
  resize: vertical;
}
.bk-field.err input,
.bk-field.err select {
  border-color: #b05a4a;
}
.bk-field .f-err {
  color: #d98a7a;
  font-size: 0.74rem;
  display: none;
}
.bk-field.err .f-err {
  display: block;
}
.bk-phone {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 8px;
}
.bk-guests {
  display: flex;
  gap: 8px;
}
.bk-guests input {
  flex: 1;
}
.bk-guests button {
  padding: 0 18px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.bk-guests button:hover {
  border-color: var(--gold);
}
.bk-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.bk-chips span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #ebf0fc;
  background: rgba(124, 156, 255, 0.12);
  border: 1px solid rgba(124, 156, 255, 0.3);
  border-radius: 999px;
  padding: 4px 10px;
}
.bk-chips span b {
  cursor: pointer;
  color: rgba(235, 240, 252, 0.6);
  font-weight: 700;
}
.bk-chips span b:hover {
  color: #fff;
}
.bk-consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: rgba(235, 240, 252, 0.68);
  font-size: 0.82rem;
  line-height: 1.5;
  cursor: pointer;
}
.bk-consent input {
  appearance: none;
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.bk-consent input:checked {
  background: linear-gradient(180deg, #e9bc5c, var(--gold));
  border-color: transparent;
}
.bk-consent input:checked::after {
  content: "✓";
  color: #221602;
  font-size: 0.75rem;
  font-weight: 800;
}
.bk-consent.err {
  color: #e8b0a4;
}
.bk-consent.err input {
  border-color: #b05a4a;
}
.bk-submit {
  grid-column: 1 / -1;
  margin-top: 6px;
}
.bk-submit .btn {
  width: 100%;
  justify-content: center;
  font-size: 1.02rem;
  padding: 16px 26px;
}
.bk-submit .btn:disabled {
  opacity: 0.55;
  cursor: default;
  transform: none;
}
.bk-toast {
  grid-column: 1 / -1;
  display: none;
  border: 1px solid rgba(176, 90, 74, 0.5);
  background: rgba(176, 90, 74, 0.12);
  color: #e8b0a4;
  border-radius: 11px;
  padding: 12px 16px;
  font-size: 0.88rem;
}
.bk-toast.on {
  display: block;
}

/* Loading / error states */
.bk-skel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}
.bk-skel div {
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  background-size: 200% 100%;
  animation: bkpulse 1.4s ease infinite;
}
@keyframes bkpulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.bk-fail {
  color: rgba(235, 240, 252, 0.6);
  font-size: 0.92rem;
  padding: 20px 0;
  text-align: center;
}
.bk-fail a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bk-fail button {
  margin-top: 12px;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  cursor: pointer;
}

/* Centered sub-page heroes (design correction 2026-07-07) live in site.css */
@media (prefers-reduced-motion: reduce) {
  .bk *,
  .bk-skel div {
    transition: none !important;
    animation: none !important;
  }
}
