/* ════════════════════════════════════════════════════════════
   yutie-appointments-wizard.css · chunk 4.4.1 (2026-05-20)
   ─────────────────────────────────────────────────────────────
   Wizard chrome for the public booking surface at /appointments.

   Chunk 4.4.1 ports the approved premium redesign: a split
   editorial layout. The left panel carries the Yutie Access
   wordmark, eyebrow, headline, lead, a numbered "what to expect"
   list, and Eutychus's presence. The right panel carries the
   3-step booking wizard. Both sit inside one glass card on the
   yutie_brand canvas.

   Layered ON TOP of:
     yutie-brand-tokens.css           (chunk 4.1.1, tokens)
     yutie-external-form-chrome.css   (chunk 4.1.2, canvas + toggles)
     yutie-appointments.css           (chunk 4.1, body + form-control base)

   Tokens consumed (all from yutie-brand-tokens.css):
     --gold, --gold-lt, --gold-dp, --gold-pale, --gold-line, --gold-glow,
     --tending, --tending-glow, --waiting, --waiting-bg,
     --bg, --text, --text2, --text3,
     --glass, --glass-b, --glass-hi, --rule, --rule-2, --shadow,
     --r, --r-sm, --r-xs, --blur,
     --ease, --ease-spring, --ease-out,
     --serif, --outfit, --spartan

   No hardcoded hex outside #08080a (matches the brand button text
   used in yutie-brand.css for gold-on-dark contrast; no token
   exists for it).

   --bg2 note. The approved preview used a --bg2 (#0d0d0f) surface
   for the left panel. No --bg2 token exists in yutie-brand-tokens.css,
   so the brand panel approximates it by layering --glass over --bg,
   which lifts #080809 a touch the same way --bg2 would. Tokens only.

   Layout discipline. This is our own markup, so full layout control
   is fine. Every selector is scoped to body.yutie-wizard so it cannot
   touch any other external-form view (Appointly's own /appointly/
   appointments_public/form for example).

   No !important is used; the wizard owns its markup and selectors
   beat Perfex / Bootstrap on natural specificity.
═══════════════════════════════════════════════════════════ */

/* ─── Body baseline ─── */

body.yutie-wizard {
  font-family: var(--outfit);
  color: var(--text);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* ─── Stage · centres the split card over the canvas ─── */

body.yutie-wizard .yutie-wizard__stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 28px;
}

/* ─── Shell · the split grid, and the glass card ─── */

body.yutie-wizard .yutie-wizard__shell {
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  background: var(--glass);
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 var(--glass-hi),
    0 40px 100px var(--shadow);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

/* ─── Left editorial brand panel ─── */

body.yutie-wizard .yutie-wizard__brand {
  display: flex;
  flex-direction: column;
  padding: 54px 48px 48px;
  border-right: 1px solid var(--rule-2);
  /* --bg2 substitute: a --glass sheet over --bg lifts the panel. */
  background:
    radial-gradient(120% 80% at 0% 0%, var(--gold-pale), transparent 60%),
    linear-gradient(var(--glass), var(--glass)),
    var(--bg);
}

body.yutie-wizard .yutie-wizard__wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: var(--text);
}

body.yutie-wizard .yutie-wizard__wordmark-accent {
  color: var(--gold);
}

body.yutie-wizard .yutie-wizard__eyebrow {
  margin-top: 54px;
  font-family: var(--spartan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

body.yutie-wizard .yutie-wizard__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 16px 0 0;
}

body.yutie-wizard .yutie-wizard__headline em {
  font-style: italic;
  color: var(--gold-lt);
}

body.yutie-wizard .yutie-wizard__lead {
  font-family: var(--outfit);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text2);
  margin: 20px 0 0;
  max-width: 36ch;
}

body.yutie-wizard .yutie-wizard__expect {
  margin: 34px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

body.yutie-wizard .yutie-wizard__expect li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

body.yutie-wizard .yutie-wizard__expect li:last-child {
  margin-bottom: 0;
}

body.yutie-wizard .yutie-wizard__expect-num {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  background: var(--gold-pale);
  color: var(--gold);
  font-family: var(--spartan);
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.yutie-wizard .yutie-wizard__expect-text {
  font-family: var(--outfit);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text2);
}

body.yutie-wizard .yutie-wizard__presence {
  margin-top: auto;
  padding-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}

body.yutie-wizard .yutie-wizard__avatar {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--glass-b), var(--glass));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--gold-lt);
}

body.yutie-wizard .yutie-wizard__presence-who {
  font-family: var(--outfit);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

body.yutie-wizard .yutie-wizard__presence-role {
  font-family: var(--spartan);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text3);
  margin-top: 2px;
}

body.yutie-wizard .yutie-wizard__presence-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--outfit);
  font-size: 12.5px;
  color: var(--text2);
  margin-top: 5px;
}

body.yutie-wizard .yutie-wizard__presence-live {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tending);
  box-shadow: 0 0 0 3px var(--tending-glow);
}

/* ─── Operator logo (above the wordmark) ─── */

/* Two variants, switched on the theme attribute that already drives the
   surface (the same attribute that flips --bg light/dark). Default external
   theme is dark, so the dark-background logo shows unless [data-theme="light"]
   is set. When only one variant is uploaded the view renders it into both. */
body.yutie-wizard .yutie-wizard__logo {
  margin-bottom: 22px;
}

body.yutie-wizard .yutie-wizard__logo-img {
  display: block;
  max-height: 48px;
  max-width: 190px;
  width: auto;
  height: auto;
}

body.yutie-wizard .yutie-wizard__logo-img--light {
  display: none;
}

html[data-theme="light"] body.yutie-wizard .yutie-wizard__logo-img--dark {
  display: none;
}

html[data-theme="light"] body.yutie-wizard .yutie-wizard__logo-img--light {
  display: block;
}

/* ─── Operator profile photo in the presence avatar ─── */

body.yutie-wizard .yutie-wizard__avatar {
  overflow: hidden;
}

body.yutie-wizard .yutie-wizard__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* ─── Right form panel ─── */

body.yutie-wizard .yutie-wizard__panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 46px 48px 42px;
}

/* The <form> is a plain flow wrapper now; the shell carries the card. */
body.yutie-wizard .yutie-wizard__form {
  position: relative;
}

/* ─── Progress indicator ─── */

body.yutie-wizard .yutie-wizard__progress {
  margin-bottom: 36px;
}

body.yutie-wizard .yutie-wizard__progress ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}

body.yutie-wizard .yutie-wizard__progress li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--spartan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
  border: 1px solid transparent;
  background: transparent;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}

body.yutie-wizard .yutie-wizard__progress li + li::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--rule-2);
  margin: 0 6px 0 -6px;
  vertical-align: middle;
}

body.yutie-wizard .yutie-wizard__progress-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--rule-2);
  background: var(--glass);
  color: var(--text2);
  font-family: var(--spartan);
  font-size: 12px;
  font-weight: 700;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

body.yutie-wizard .yutie-wizard__progress li.is-active {
  color: var(--gold);
  background: var(--gold-pale);
  border-color: var(--gold-line);
}

body.yutie-wizard .yutie-wizard__progress li.is-active .yutie-wizard__progress-num {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: #08080a;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

body.yutie-wizard .yutie-wizard__progress li.is-complete {
  color: var(--text2);
}

body.yutie-wizard .yutie-wizard__progress li.is-complete .yutie-wizard__progress-num {
  background: var(--gold-pale);
  color: var(--gold);
  border-color: var(--gold-line);
}

/* ─── Step panels (crossfade) ─── */

body.yutie-wizard .yutie-wizard__step {
  opacity: 1;
  transition: opacity 0.3s var(--ease-out);
}

body.yutie-wizard .yutie-wizard__step[hidden] {
  display: none;
}

body.yutie-wizard .yutie-wizard__step.is-exiting {
  opacity: 0;
}

body.yutie-wizard .yutie-wizard__step.is-active {
  opacity: 1;
}

body.yutie-wizard .yutie-wizard__step-header {
  margin-bottom: 28px;
  text-align: left;
}

body.yutie-wizard .yutie-wizard__step-header h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 10px;
}

body.yutie-wizard .yutie-wizard__step-header p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text2);
  margin: 0;
}

/* ─── Fields ─── */

body.yutie-wizard .yutie-wizard__field {
  margin-bottom: 18px;
}

body.yutie-wizard .yutie-wizard__field-row {
  display: flex;
  gap: 14px;
  margin-bottom: 0;
}

body.yutie-wizard .yutie-wizard__field-row .yutie-wizard__field {
  flex: 1 1 0;
}

body.yutie-wizard .yutie-wizard__field label {
  display: block;
  font-family: var(--spartan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 6px;
}

body.yutie-wizard .yutie-wizard__field .form-control {
  width: 100%;
  background: var(--glass-b);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-xs);
  color: var(--text);
  font-family: var(--outfit);
  font-size: 15px;
  font-weight: 400;
  padding: 12px 14px;
  min-height: 46px;
  box-sizing: border-box;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

body.yutie-wizard .yutie-wizard__field .form-control:focus,
body.yutie-wizard .yutie-wizard__field .form-control:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}

body.yutie-wizard .yutie-wizard__field .form-control::placeholder {
  color: var(--text3);
}

/* Shake animation on validation failure. */
body.yutie-wizard .yutie-wizard__field .form-control.is-shake,
body.yutie-wizard .yutie-wizard__field .is-shake {
  animation: yutie-wizard-shake 0.4s var(--ease-spring);
  border-color: var(--waiting);
}

@keyframes yutie-wizard-shake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}

/* ─── Actions row ─── */

body.yutie-wizard .yutie-wizard__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

body.yutie-wizard .yutie-wizard__actions--single {
  justify-content: flex-end;
}

/* ─── Buttons ─── */

body.yutie-wizard .yutie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  min-height: 46px;
  border-radius: var(--r-sm);
  font-family: var(--spartan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

body.yutie-wizard .yutie-btn:focus,
body.yutie-wizard .yutie-btn:focus-visible {
  outline: 2px solid var(--gold-glow);
  outline-offset: 2px;
}

body.yutie-wizard .yutie-btn--primary {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: #08080a;
  border-color: var(--gold);
  box-shadow: 0 6px 24px var(--gold-glow);
}

body.yutie-wizard .yutie-btn--primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dp));
  transform: translateY(-1px);
  box-shadow: 0 10px 32px var(--gold-glow);
}

body.yutie-wizard .yutie-btn--primary:disabled,
body.yutie-wizard .yutie-btn--primary[disabled] {
  opacity: 0.6;
  cursor: progress;
  transform: none;
}

body.yutie-wizard .yutie-btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--rule-2);
}

body.yutie-wizard .yutie-btn--ghost:hover {
  border-color: var(--gold-line);
  color: var(--gold);
  background: var(--gold-pale);
}

/* ─── Summary card (Step 3) ─── */

body.yutie-wizard .yutie-wizard__summary {
  position: relative;
  background: var(--glass-b);
  border: 1px solid var(--gold-line);
  border-top-width: 3px;
  border-top-color: var(--gold);
  border-radius: var(--r-sm);
  padding: 28px 28px 22px;
  margin-bottom: 24px;
}

body.yutie-wizard .yutie-wizard__summary h2 {
  font-family: var(--spartan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

body.yutie-wizard .yutie-wizard__summary dl {
  margin: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 24px;
  row-gap: 10px;
}

body.yutie-wizard .yutie-wizard__summary dt {
  font-family: var(--spartan);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text3);
  align-self: center;
}

body.yutie-wizard .yutie-wizard__summary dd {
  margin: 0;
  font-family: var(--outfit);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  align-self: center;
  word-break: break-word;
}

body.yutie-wizard .yutie-wizard__held-copy {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text2);
}

/* ─── Error banner ─── */

body.yutie-wizard .yutie-wizard__error {
  background: var(--waiting-bg);
  border: 1px solid var(--waiting);
  border-left-width: 3px;
  border-radius: var(--r-xs);
  color: var(--text);
  font-family: var(--outfit);
  font-size: 14px;
  padding: 12px 16px;
  margin-bottom: 18px;
}

/* ════════════════════════════════════════════════════════════
   Step 1 calendar · two-pane date + time picker (redesign)
   ─────────────────────────────────────────────────────────────
   A month grid beside a column of time slots, the Calendly model
   carried into the wizard's premium chrome. The engine writes the
   canonical East Africa Time value to the hidden #date field; the
   timezone selector only relabels the slot faces. Brand tokens
   only; #08080a matches the gold-on-dark button text used above.
═══════════════════════════════════════════════════════════ */

body.yutie-wizard .yutie-cal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 26px;
  margin-bottom: 8px;
  border-radius: var(--r-sm);
  transition: transform 0.1s var(--ease);
}

body.yutie-wizard .yutie-cal.is-shake {
  animation: yutie-wizard-shake 0.4s var(--ease-spring);
}

/* ─── Calendar pane ─── */

body.yutie-wizard .yutie-cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

body.yutie-wizard .yutie-cal__month {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text);
}

body.yutie-wizard .yutie-cal__nav-btn {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--rule-2);
  background: var(--glass);
  color: var(--text2);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease), transform 0.2s var(--ease-spring);
  appearance: none;
  -webkit-appearance: none;
}

body.yutie-wizard .yutie-cal__nav-btn:hover {
  border-color: var(--gold-line);
  color: var(--gold);
  background: var(--gold-pale);
}

body.yutie-wizard .yutie-cal__nav-btn:focus-visible {
  outline: 2px solid var(--gold-glow);
  outline-offset: 2px;
}

body.yutie-wizard .yutie-cal__nav-btn:disabled,
body.yutie-wizard .yutie-cal__nav-btn[aria-disabled="true"] {
  opacity: 0.32;
  cursor: default;
  pointer-events: none;
}

body.yutie-wizard .yutie-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}

body.yutie-wizard .yutie-cal__weekdays span {
  text-align: center;
  font-family: var(--spartan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
}

body.yutie-wizard .yutie-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

body.yutie-wizard .yutie-cal__cell {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--outfit);
  font-size: 14.5px;
  border: 0;
  background: transparent;
  padding: 0;
}

body.yutie-wizard .yutie-cal__cell--empty {
  visibility: hidden;
}

body.yutie-wizard button.yutie-cal__day {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid transparent;
  background: var(--glass);
  color: var(--text);
  font-family: var(--outfit);
  font-size: 14.5px;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease-spring), box-shadow 0.2s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

body.yutie-wizard button.yutie-cal__day:hover {
  border-color: var(--gold-line);
  background: var(--gold-pale);
  color: var(--gold);
  transform: translateY(-1px);
}

body.yutie-wizard button.yutie-cal__day:focus-visible {
  outline: 2px solid var(--gold-glow);
  outline-offset: 2px;
}

body.yutie-wizard .yutie-cal__day.is-selected,
body.yutie-wizard button.yutie-cal__day.is-selected {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  border-color: var(--gold);
  color: #08080a;
  box-shadow: 0 6px 18px var(--gold-glow);
}

body.yutie-wizard .yutie-cal__cell.is-disabled {
  color: var(--text3);
  opacity: 0.55;
}

/* Today marker · a small dot under the number. */
body.yutie-wizard .yutie-cal__cell.is-today::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

body.yutie-wizard .yutie-cal__cell.is-today.is-selected::after {
  background: #08080a;
}

/* ─── Timezone selector ─── */

body.yutie-wizard .yutie-cal__tz {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}

body.yutie-wizard .yutie-cal__tz label {
  display: block;
  font-family: var(--spartan);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 7px;
}

body.yutie-wizard .yutie-cal__tz-select {
  position: relative;
}

body.yutie-wizard .yutie-cal__tz select {
  width: 100%;
  background: var(--glass-b);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-xs);
  color: var(--text);
  font-family: var(--outfit);
  font-size: 14px;
  padding: 11px 38px 11px 14px;
  min-height: 44px;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

body.yutie-wizard .yutie-cal__tz select:focus,
body.yutie-wizard .yutie-cal__tz select:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}

/* Chevron drawn from a border, so no image asset and no hardcoded fill. */
body.yutie-wizard .yutie-cal__tz-select::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text3);
  border-bottom: 2px solid var(--text3);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

/* ─── Times pane ─── */

body.yutie-wizard .yutie-cal__times {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--glass-b);
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  padding: 20px 20px 8px;
}

body.yutie-wizard .yutie-cal__times-head {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: var(--text);
}

body.yutie-wizard .yutie-cal__times-head:empty {
  display: none;
}

body.yutie-wizard .yutie-cal__times-sub {
  font-family: var(--outfit);
  font-size: 12.5px;
  color: var(--text3);
  margin-top: 4px;
  margin-bottom: 14px;
}

body.yutie-wizard .yutie-cal__times-sub:empty {
  display: none;
}

body.yutie-wizard .yutie-cal__slots {
  flex: 1 1 auto;
  max-height: 326px;
  overflow-y: auto;
  padding-right: 6px;
  margin-right: -6px;
}

/* Quiet scrollbar in the slot column. */
body.yutie-wizard .yutie-cal__slots::-webkit-scrollbar {
  width: 8px;
}

body.yutie-wizard .yutie-cal__slots::-webkit-scrollbar-thumb {
  background: var(--rule-2);
  border-radius: 999px;
}

body.yutie-wizard .yutie-cal__slot-group + .yutie-cal__slot-group {
  margin-top: 16px;
}

body.yutie-wizard .yutie-cal__slot-group-label {
  font-family: var(--spartan);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

body.yutie-wizard .yutie-cal__slot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

body.yutie-wizard .yutie-cal__slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid var(--rule-2);
  border-radius: var(--r-xs);
  background: var(--glass);
  color: var(--text);
  font-family: var(--outfit);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease-spring), box-shadow 0.2s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

body.yutie-wizard .yutie-cal__slot:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-1px);
}

body.yutie-wizard .yutie-cal__slot:focus-visible {
  outline: 2px solid var(--gold-glow);
  outline-offset: 2px;
}

body.yutie-wizard .yutie-cal__slot.is-selected {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  border-color: var(--gold);
  color: #08080a;
  box-shadow: 0 6px 18px var(--gold-glow);
}

body.yutie-wizard .yutie-cal__slot.is-disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
  background: transparent;
}

body.yutie-wizard .yutie-cal__slot-time {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

body.yutie-wizard .yutie-cal__slot-note,
body.yutie-wizard .yutie-cal__slot-tag {
  font-family: var(--spartan);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
}

body.yutie-wizard .yutie-cal__placeholder {
  margin: 0;
  padding: 28px 8px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text3);
}

/* ─── Choose-a-time hint ─── */

body.yutie-wizard .yutie-cal__hint {
  margin: 14px 0 0;
  padding: 10px 14px;
  background: var(--waiting-bg);
  border: 1px solid var(--waiting);
  border-left-width: 3px;
  border-radius: var(--r-xs);
  font-family: var(--outfit);
  font-size: 13.5px;
  color: var(--text);
}

body.yutie-wizard .yutie-cal__hint[hidden] {
  display: none;
}

/* ─── Tablet / stack (<= 880px) ─── */

@media (max-width: 880px) {

  body.yutie-wizard .yutie-wizard__shell {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  body.yutie-wizard .yutie-wizard__brand {
    border-right: none;
    border-bottom: 1px solid var(--rule-2);
    padding: 40px 32px 34px;
  }

  body.yutie-wizard .yutie-wizard__headline {
    font-size: 34px;
  }

  body.yutie-wizard .yutie-wizard__expect {
    margin-top: 26px;
    padding-top: 22px;
  }

  body.yutie-wizard .yutie-wizard__panel {
    padding: 36px 32px 34px;
  }

  body.yutie-wizard .yutie-wizard__presence {
    margin-top: 30px;
  }

  /* Stack the calendar over the time column on the narrow card. */
  body.yutie-wizard .yutie-cal {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body.yutie-wizard .yutie-cal__slots {
    max-height: 280px;
  }
}

/* ─── Mobile (<= 640px) · form internals ─── */

@media (max-width: 640px) {

  body.yutie-wizard .yutie-wizard__stage {
    padding: 4vh 14px;
  }

  body.yutie-wizard .yutie-wizard__brand {
    padding: 32px 22px 26px;
  }

  body.yutie-wizard .yutie-wizard__panel {
    padding: 30px 22px 28px;
  }

  body.yutie-wizard .yutie-wizard__headline {
    font-size: 30px;
  }

  body.yutie-wizard .yutie-wizard__step-header h1 {
    font-size: 28px;
  }

  body.yutie-wizard .yutie-wizard__step-header p {
    font-size: 15px;
  }

  /* Stack first / last name on mobile. */
  body.yutie-wizard .yutie-wizard__field-row {
    flex-direction: column;
    gap: 0;
  }

  body.yutie-wizard .yutie-wizard__field-row .yutie-wizard__field {
    margin-bottom: 18px;
  }

  /* Progress: collapse labels, keep numbered dots. */
  body.yutie-wizard .yutie-wizard__progress li {
    padding: 6px 8px;
  }

  body.yutie-wizard .yutie-wizard__progress-label {
    display: none;
  }

  body.yutie-wizard .yutie-wizard__progress li + li::before {
    width: 18px;
    margin: 0 4px 0 -4px;
  }

  /* Summary: stack dt + dd. */
  body.yutie-wizard .yutie-wizard__summary dl {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  body.yutie-wizard .yutie-wizard__summary dt {
    margin-bottom: -6px;
  }

  /* Buttons: ensure a 44px minimum touch target. */
  body.yutie-wizard .yutie-btn {
    min-height: 48px;
    padding: 14px 18px;
    font-size: 11.5px;
  }

  body.yutie-wizard .yutie-wizard__actions {
    flex-wrap: wrap;
  }

  body.yutie-wizard .yutie-wizard__actions .yutie-btn--primary {
    order: 1;
    flex: 1 1 100%;
  }

  body.yutie-wizard .yutie-wizard__actions .yutie-btn--ghost {
    order: 2;
    flex: 1 1 100%;
  }
}

/* ════════════════════════════════════════════════════════════
   Appointment view · chunk 4.4.2 (2026-05-20)
   ─────────────────────────────────────────────────────────────
   The branded login-free appointment overview rendered at
   /yutie_appointments/view?hash=<hash>. It looks an appointment up
   by the same hash Appointly's stock clients_hash page uses and
   renders it in the Yutie aesthetic, since that stock page is a
   standalone view with no Perfex head hook and cannot be reskinned
   through the brand CSS injection.

   Every rule below is scoped to body.yutie-appointment-view so it
   cannot reach the booking wizard (body.yutie-wizard), which links
   this same stylesheet. The view uses its own .yutie-av class
   family; no wizard selector is touched, so booking.php is
   unaffected.

   Tokens consumed (all from yutie-brand-tokens.css):
     --gold, --gold-lt, --gold-dp, --gold-pale, --gold-line, --gold-glow,
     --tending, --tending-bg, --tending-line,
     --waiting, --waiting-bg, --quiet, --quiet-bg, --quiet-line,
     --bg, --text, --text2, --text3,
     --glass, --glass-b, --glass-hi, --rule, --rule-2, --shadow,
     --r, --r-sm, --r-xs, --blur, --ease, --ease-spring,
     --serif, --outfit, --spartan

   Note: --waiting has no -line / -glow variant in the token set, so
   the waiting pill and notice border use solid --waiting. #08080a
   matches the gold-on-dark button text used in the wizard above; no
   token exists for it.
═══════════════════════════════════════════════════════════ */

/* ─── Body baseline ─── */

body.yutie-appointment-view {
  font-family: var(--outfit);
  color: var(--text);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* ─── Stage · centres the card over the canvas ─── */

body.yutie-appointment-view .yutie-av__stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 22px;
}

/* ─── Card · one glass panel ─── */

body.yutie-appointment-view .yutie-av__card {
  width: 100%;
  max-width: 540px;
  background: var(--glass);
  border: 1px solid var(--gold-line);
  border-radius: var(--r);
  padding: 40px 42px 38px;
  box-shadow:
    inset 0 1px 0 var(--glass-hi),
    0 40px 100px var(--shadow);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}

/* ─── Head row · wordmark + status pill ─── */

body.yutie-appointment-view .yutie-av__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

body.yutie-appointment-view .yutie-av__wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--text);
}

body.yutie-appointment-view .yutie-av__wordmark-accent {
  color: var(--gold);
}

/* ─── Status pill · three calm states ─── */

body.yutie-appointment-view .yutie-av__pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--spartan);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

body.yutie-appointment-view .yutie-av__pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

body.yutie-appointment-view .yutie-av__pill--tending {
  background: var(--tending-bg);
  border-color: var(--tending-line);
  color: var(--tending);
}

body.yutie-appointment-view .yutie-av__pill--waiting {
  background: var(--waiting-bg);
  border-color: var(--waiting);
  color: var(--waiting);
}

body.yutie-appointment-view .yutie-av__pill--quiet {
  background: var(--quiet-bg);
  border-color: var(--quiet-line);
  color: var(--quiet);
}

/* ─── Headline ─── */

body.yutie-appointment-view .yutie-av__headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 24px;
}

/* ─── Details ─── */

body.yutie-appointment-view .yutie-av__details {
  margin: 0;
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 26px;
  row-gap: 14px;
  background: var(--glass-b);
  border: 1px solid var(--gold-line);
  border-top-width: 3px;
  border-top-color: var(--gold);
  border-radius: var(--r-sm);
  padding: 24px 26px;
}

body.yutie-appointment-view .yutie-av__details dt {
  font-family: var(--spartan);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text3);
  align-self: start;
  padding-top: 2px;
}

body.yutie-appointment-view .yutie-av__details dd {
  margin: 0;
  font-family: var(--outfit);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  word-break: break-word;
}

/* ─── Held-in-care line ─── */

body.yutie-appointment-view .yutie-av__held-copy {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text2);
}

/* ─── Pending-release note ─── */

body.yutie-appointment-view .yutie-av__pending {
  margin: 24px 0 0;
  padding: 14px 16px;
  background: var(--waiting-bg);
  border: 1px solid var(--waiting);
  border-left-width: 3px;
  border-radius: var(--r-xs);
  font-family: var(--outfit);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

/* ─── Release (cancel) control ─── */

body.yutie-appointment-view .yutie-av__release {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}

body.yutie-appointment-view .yutie-av__release-form {
  margin-top: 16px;
}

body.yutie-appointment-view .yutie-av__release-form[hidden] {
  display: none;
}

body.yutie-appointment-view .yutie-av__release-prompt {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text2);
}

body.yutie-appointment-view .yutie-av__release-form label {
  display: block;
  font-family: var(--spartan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 6px;
}

body.yutie-appointment-view .yutie-av__release-field {
  width: 100%;
  background: var(--glass-b);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-xs);
  color: var(--text);
  font-family: var(--outfit);
  font-size: 15px;
  line-height: 1.5;
  padding: 12px 14px;
  box-sizing: border-box;
  resize: vertical;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

body.yutie-appointment-view .yutie-av__release-field:focus,
body.yutie-appointment-view .yutie-av__release-field:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}

body.yutie-appointment-view .yutie-av__release-hint {
  margin: 6px 0 0;
  font-family: var(--outfit);
  font-size: 12.5px;
  color: var(--text3);
}

body.yutie-appointment-view .yutie-av__release-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}

/* ─── Notice · release outcome ─── */

body.yutie-appointment-view .yutie-av__notice {
  margin-top: 16px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-left-width: 3px;
  border-radius: var(--r-xs);
  font-family: var(--outfit);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}

body.yutie-appointment-view .yutie-av__notice[hidden] {
  display: none;
}

body.yutie-appointment-view .yutie-av__notice.is-tending {
  background: var(--tending-bg);
  border-color: var(--tending);
}

body.yutie-appointment-view .yutie-av__notice.is-waiting {
  background: var(--waiting-bg);
  border-color: var(--waiting);
}

body.yutie-appointment-view .yutie-av__notice.is-quiet {
  background: var(--quiet-bg);
  border-color: var(--quiet);
}

/* ─── Buttons ─── */

body.yutie-appointment-view .yutie-av__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  min-height: 46px;
  border-radius: var(--r-sm);
  font-family: var(--spartan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

body.yutie-appointment-view .yutie-av__btn:focus,
body.yutie-appointment-view .yutie-av__btn:focus-visible {
  outline: 2px solid var(--gold-glow);
  outline-offset: 2px;
}

body.yutie-appointment-view .yutie-av__btn--primary {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: #08080a;
  border-color: var(--gold);
  box-shadow: 0 6px 24px var(--gold-glow);
}

body.yutie-appointment-view .yutie-av__btn--primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dp));
  transform: translateY(-1px);
  box-shadow: 0 10px 32px var(--gold-glow);
}

body.yutie-appointment-view .yutie-av__btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--rule-2);
}

body.yutie-appointment-view .yutie-av__btn--ghost:hover {
  border-color: var(--gold-line);
  color: var(--gold);
  background: var(--gold-pale);
}

body.yutie-appointment-view .yutie-av__btn--quiet {
  background: transparent;
  color: var(--text2);
  border-color: var(--quiet-line);
}

body.yutie-appointment-view .yutie-av__btn--quiet:hover {
  border-color: var(--quiet);
  color: var(--text);
  background: var(--quiet-bg);
}

body.yutie-appointment-view .yutie-av__btn:disabled,
body.yutie-appointment-view .yutie-av__btn[disabled] {
  opacity: 0.6;
  cursor: progress;
  transform: none;
}

/* ─── Not-found state ─── */

body.yutie-appointment-view .yutie-av__card--empty {
  text-align: center;
}

body.yutie-appointment-view .yutie-av__card--empty .yutie-av__wordmark {
  display: block;
  margin-bottom: 26px;
}

body.yutie-appointment-view .yutie-av__card--empty .yutie-av__headline {
  font-size: 26px;
  margin-bottom: 14px;
}

body.yutie-appointment-view .yutie-av__empty-copy {
  font-family: var(--outfit);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text2);
  margin: 0 auto 26px;
  max-width: 34ch;
}

/* ─── Mobile (<= 540px) ─── */

@media (max-width: 540px) {

  body.yutie-appointment-view .yutie-av__stage {
    padding: 4vh 14px;
  }

  body.yutie-appointment-view .yutie-av__card {
    padding: 30px 22px 28px;
  }

  body.yutie-appointment-view .yutie-av__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  body.yutie-appointment-view .yutie-av__headline {
    font-size: 26px;
  }

  body.yutie-appointment-view .yutie-av__details {
    grid-template-columns: 1fr;
    row-gap: 4px;
    padding: 20px;
  }

  body.yutie-appointment-view .yutie-av__details dt {
    padding-top: 12px;
  }

  body.yutie-appointment-view .yutie-av__details dt:first-child {
    padding-top: 0;
  }

  body.yutie-appointment-view .yutie-av__release-actions {
    flex-direction: column;
  }

  body.yutie-appointment-view .yutie-av__btn {
    width: 100%;
    min-height: 48px;
  }
}

/* ════════════════════════════════════════════════════════════
   Feedback capture · chunk 4.4.3 (2026-05-24)
   ─────────────────────────────────────────────────────────────
   Branded reflection capture on the appointment-view surface for
   finished hours. Posts to Appointly's existing
   handleFeedbackPost endpoint (no new endpoint introduced).

   Every rule below stays scoped to body.yutie-appointment-view
   and the yutie-av__ family, so the wizard surface is untouched.

   Tokens consumed (all from yutie-brand-tokens.css):
     --gold, --gold-lt, --gold-pale, --gold-line, --gold-glow,
     --text, --text2, --text3, --rule, --rule-2,
     --glass-b, --r-sm, --r-xs, --ease, --ease-spring,
     --serif, --outfit, --spartan
   No hardcoded hex.
═══════════════════════════════════════════════════════════ */

body.yutie-appointment-view .yutie-av__feedback {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}

body.yutie-appointment-view .yutie-av__feedback-heading {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  color: var(--text);
}

body.yutie-appointment-view .yutie-av__feedback-invite {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text2);
}

body.yutie-appointment-view .yutie-av__stars {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

body.yutie-appointment-view .yutie-av__star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r-xs);
  color: var(--text3);
  cursor: pointer;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease-spring), border-color 0.25s var(--ease), background 0.25s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

body.yutie-appointment-view .yutie-av__star:focus,
body.yutie-appointment-view .yutie-av__star:focus-visible {
  outline: 2px solid var(--gold-glow);
  outline-offset: 2px;
}

body.yutie-appointment-view .yutie-av__star:hover {
  color: var(--gold-lt);
  transform: translateY(-1px);
}

body.yutie-appointment-view .yutie-av__star.is-rated {
  color: var(--gold);
}

body.yutie-appointment-view .yutie-av__star-glyph {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

body.yutie-appointment-view .yutie-av__feedback-comment-label {
  display: block;
  font-family: var(--spartan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text2);
  margin-bottom: 6px;
}

body.yutie-appointment-view .yutie-av__feedback-comment {
  width: 100%;
  background: var(--glass-b);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-xs);
  color: var(--text);
  font-family: var(--outfit);
  font-size: 15px;
  line-height: 1.5;
  padding: 12px 14px;
  box-sizing: border-box;
  resize: vertical;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

body.yutie-appointment-view .yutie-av__feedback-comment:focus,
body.yutie-appointment-view .yutie-av__feedback-comment:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}

body.yutie-appointment-view .yutie-av__feedback-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 14px;
}

body.yutie-appointment-view .yutie-av__feedback-already {
  margin: 12px 0 0;
  font-family: var(--outfit);
  font-size: 12.5px;
  color: var(--text3);
}

@media (max-width: 540px) {

  body.yutie-appointment-view .yutie-av__star {
    width: 42px;
    height: 42px;
  }

  body.yutie-appointment-view .yutie-av__feedback-actions {
    flex-direction: column;
  }
}

/* ════════════════════════════════════════════════════════════
   End yutie-appointments-wizard.css
═══════════════════════════════════════════════════════════ */
