/* -------------------------------------------------------------------
   Consult pages — /consult (chooser), /consult/adel, /consult/emily.
   Shared here rather than duplicated inline across three files, and
   kept out of styles.css so it doesn't cost a sitewide cache bust.
   ------------------------------------------------------------------- */

/* ---- person chooser (index) ---- */
.who { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 880px; }
.who a {
  text-decoration: none;
  background: var(--paper);
  border: 1px solid color-mix(in oklab, var(--rule) 60%, var(--bg));
  border-radius: 10px; padding: 30px 28px 28px;
  display: grid; gap: 16px; align-content: start;
  transition: border-color .22s ease, transform .22s ease, background .22s ease;
}
.who a:hover { transform: translateY(-2px); border-color: var(--navy); background: var(--bg); }
.who a:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }
.who .nm { font-family: "Newsreader", serif; font-weight: 300; font-size: 28px; letter-spacing: -0.012em; line-height: 1.15; color: var(--ink); }
.who .rl { font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.who .ds { font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.who .go { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--navy); border-bottom: 1px solid var(--navy); padding-bottom: 3px; justify-self: start; transition: gap .2s ease; }
.who a:hover .go { gap: 14px; }

/* ---- monogram ---- */
.mono-i {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: "Newsreader", serif; font-weight: 300; font-size: 26px; line-height: 1;
  background: var(--navy); color: var(--bg); border: 1px solid var(--navy);
}
.mono-i.lg { width: 76px; height: 76px; font-size: 34px; }

/* ---- person page header ---- */
.person-head { display: flex; align-items: center; gap: 22px; margin-bottom: 30px; }
.person-head .meta { display: grid; gap: 4px; }
.person-head .nm { font-family: "Newsreader", serif; font-weight: 300; font-size: 24px; letter-spacing: -0.012em; color: var(--ink); line-height: 1.2; }
.person-head .rl { font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ---- calendar frame ---- */
.cal-wrap {
  position: relative; margin-top: 48px;
  background: var(--paper);
  border: 1px solid color-mix(in oklab, var(--rule) 55%, var(--bg));
  border-radius: 10px; padding: 12px; overflow: hidden;
}
.cal-wrap iframe { width: 100%; min-height: 720px; border: 0; border-radius: 6px; display: block; background: transparent; }
.cal-loading {
  position: absolute; top: 90px; left: 50%; transform: translateX(-50%);
  font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); pointer-events: none; transition: opacity .3s ease;
}



@media (max-width: 760px) {
  .who { grid-template-columns: 1fr; gap: 14px; }
  .who a { padding: 22px 20px; }
  .person-head { gap: 16px; }
  .cal-wrap { margin-top: 32px; padding: 8px; }
  .cal-wrap iframe { min-height: 640px; }
}
