/* ============================================================
   drjimswan.com
   Brand palette from the Canva kit. Dark ground, gold trim.
   The register is a bottle label and a well-cut jacket: hairline
   rules, inset frames, wide letterspacing, generous margins.
   Nothing shouts. The trim does the work.
   ============================================================ */

@font-face{
  font-family:"Cormorant";src:url("/fonts/cormorant-garamond-latin-400-normal.woff2") format("woff2");
  font-weight:400;font-style:normal;font-display:swap;
}
@font-face{
  font-family:"Cormorant";src:url("/fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2");
  font-weight:600;font-style:normal;font-display:swap;
}
@font-face{
  font-family:"Cormorant";src:url("/fonts/cormorant-garamond-latin-400-italic.woff2") format("woff2");
  font-weight:400;font-style:italic;font-display:swap;
}
@font-face{
  font-family:"Spectral";src:url("/fonts/spectral-latin-300-normal.woff2") format("woff2");
  font-weight:300;font-style:normal;font-display:swap;
}
@font-face{
  font-family:"Spectral";src:url("/fonts/spectral-latin-300-italic.woff2") format("woff2");
  font-weight:300;font-style:italic;font-display:swap;
}
@font-face{
  font-family:"Spectral";src:url("/fonts/spectral-latin-400-normal.woff2") format("woff2");
  font-weight:400;font-style:normal;font-display:swap;
}
@font-face{
  font-family:"Plex Mono";src:url("/fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2");
  font-weight:400;font-style:normal;font-display:swap;
}

:root{
  /* brand kit */
  --white:#ffffff;
  --sage:#9fccc3;
  --slate:#5d7772;
  --gold:#b99b69;
  --ink:#152d2e;

  /* working tokens, all measured for contrast against the ground */
  --bg:var(--ink);
  --bg-2:#0f2223;              /* recessed panels */
  --bg-3:#1b3839;              /* raised panels */
  --text:#e9f1ee;              /* body, 12.9 to 1 */
  --text-2:var(--sage);        /* secondary, 8.2 to 1 */
  --text-3:#84a49d;            /* muted, 5.4 to 1, derived from the sage */
  --accent:var(--gold);        /* 5.5 to 1, safe for text as well as trim */
  --rule:rgba(185,155,105,.34);
  --rule-strong:rgba(185,155,105,.62);
  --rule-quiet:rgba(159,204,195,.16);

  --f-display:"Cormorant",Garamond,"Times New Roman",serif;
  --f-body:"Spectral",Georgia,"Times New Roman",serif;
  --f-data:"Plex Mono",ui-monospace,Menlo,monospace;

  --bar-h:68px;
  --pad:clamp(22px,5vw,72px);
  --measure:64ch;
  --trim:1px;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--f-body);
  font-weight:300;
  font-size:clamp(17px,1vw + 14px,19px);
  line-height:1.78;
  background-image:radial-gradient(120% 60% at 50% -10%,rgba(159,204,195,.07),transparent 60%);
  background-repeat:no-repeat;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;height:auto}
a{color:inherit}
:focus-visible{outline:1px solid var(--gold);outline-offset:4px}
::selection{background:rgba(185,155,105,.3)}

.skip{
  position:absolute;left:10px;top:-70px;z-index:100;
  background:var(--gold);color:var(--ink);padding:12px 20px;
  font-family:var(--f-data);font-size:12px;letter-spacing:.1em;
  text-transform:uppercase;text-decoration:none;
}
.skip:focus{top:10px}

.wrap{max-width:1160px;margin:0 auto;padding-inline:var(--pad)}
.vh{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;
  clip:rect(0 0 0 0);white-space:nowrap;border:0;
}

/* ---------- masthead ---------- */
.bar{
  position:sticky;top:0;z-index:50;
  background:color-mix(in srgb,var(--ink) 92%,transparent);
  backdrop-filter:blur(10px);
  border-bottom:var(--trim) solid var(--rule);
}
@supports not (backdrop-filter:blur(10px)){.bar{background:var(--ink)}}
.bar__inner{
  max-width:1160px;margin:0 auto;padding-inline:var(--pad);
  min-height:var(--bar-h);
  display:flex;align-items:center;gap:clamp(16px,3vw,44px);flex-wrap:wrap;
}
.mark{
  font-family:var(--f-display);font-weight:600;font-size:22px;
  letter-spacing:.2em;text-transform:uppercase;text-decoration:none;
  white-space:nowrap;padding:14px 0;color:var(--white);
}
.mark span{color:var(--gold)}
.nav{margin-left:auto}
.nav ul{list-style:none;margin:0;padding:0;display:flex;gap:clamp(14px,2.3vw,32px);flex-wrap:wrap}
.nav a{
  font-family:var(--f-body);font-weight:400;font-size:12.5px;
  letter-spacing:.19em;text-transform:uppercase;text-decoration:none;
  color:var(--sage);display:block;padding:14px 0 12px;
  border-bottom:1px solid transparent;transition:color .2s,border-color .2s;
}
.nav a:hover,.nav a:focus-visible{color:var(--white)}
.nav a[aria-current="page"]{color:var(--white);border-bottom-color:var(--gold)}

/* ---------- breadcrumbs ---------- */
.crumbs{
  font-family:var(--f-body);font-size:12px;letter-spacing:.16em;
  text-transform:uppercase;color:var(--text-3);
  padding:clamp(26px,4vw,44px) 0 0;margin:0;
}
.crumbs ol{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:12px}
.crumbs a{text-decoration:none;color:var(--sage)}
.crumbs a:hover,.crumbs a:focus-visible{color:var(--gold)}
.crumbs li+li::before{content:"\2022";margin-right:12px;color:var(--gold)}

/* ---------- page heads ---------- */
.head{padding:clamp(34px,5vw,64px) 0 0;max-width:64ch}
.eyebrow{
  font-family:var(--f-body);font-weight:400;font-size:12px;
  letter-spacing:.28em;text-transform:uppercase;color:var(--gold);
  margin:0 0 26px;display:flex;align-items:center;gap:16px;
}
.eyebrow::after{
  content:"";flex:1;height:1px;max-width:120px;
  background:linear-gradient(90deg,var(--rule-strong),transparent);
}
h1{
  font-family:var(--f-display);font-weight:400;
  font-size:clamp(42px,6.6vw,80px);line-height:1.02;letter-spacing:-.005em;
  margin:0;max-width:19ch;color:var(--white);
}
.standfirst{
  font-family:var(--f-body);font-style:italic;font-weight:300;
  font-size:clamp(18px,1.8vw,22px);line-height:1.55;
  margin:22px 0 0;max-width:46ch;color:var(--sage);
}
.standfirst a{color:var(--white);border-bottom:1px solid var(--gold);text-decoration:none}

/* ---------- home ---------- */
.hero{padding:clamp(44px,7vw,96px) 0 0}
.hero h1{
  font-size:clamp(58px,11.5vw,132px);line-height:.94;text-transform:uppercase;
  letter-spacing:.03em;max-width:none;font-weight:400;
}
.hero__sub{
  font-family:var(--f-display);font-weight:400;
  font-size:clamp(24px,2.7vw,36px);line-height:1.24;
  margin:26px 0 0;max-width:24ch;color:var(--sage);
}

/* the photograph sits inside a gold inset line, as on a label */
.hero__band{margin:clamp(38px,5vw,64px) 0 0;position:relative}
.hero__fig{
  position:relative;overflow:hidden;
  border-block:var(--trim) solid var(--rule-strong);
}
.hero__fig>div,.hero__fig picture{display:block}
.hero__fig img{width:100%;display:block;max-height:76vh;object-fit:cover;object-position:center 42%}
.hero__fig::after{
  content:"";position:absolute;inset:14px;pointer-events:none;
  border:1px solid rgba(255,255,255,.22);
}
.hero__band figcaption{margin-top:14px}

/* the opening is prose, set two up on wide screens like a printed page */
.hero__prose{
  margin:clamp(42px,5vw,68px) 0 clamp(48px,6vw,84px);
  column-gap:clamp(40px,5vw,88px);
}
@media (min-width:880px){.hero__prose{columns:2}}
.hero__prose p{
  margin:0 0 22px;color:var(--text);line-height:1.82;
  break-inside:avoid;
}
.hero__prose p:first-child{
  font-size:1.12em;color:var(--white);
}
.hero__prose p:first-child::first-letter{
  font-family:var(--f-display);font-weight:600;font-size:3.1em;
  line-height:.82;float:left;margin:6px 12px 0 0;color:var(--gold);
}

/* the three doors */
.doors{border-top:var(--trim) solid var(--rule)}
.doors ul{list-style:none;margin:0;padding:0}
.doors li{border-bottom:1px solid var(--rule-quiet)}
.doors li:last-child{border-bottom:var(--trim) solid var(--rule)}
.doors a{
  display:grid;gap:6px 34px;padding:30px 0;text-decoration:none;align-items:baseline;
  transition:padding-left .25s ease;
}
@media (min-width:780px){.doors a{grid-template-columns:minmax(240px,1fr) minmax(0,1.5fr)}}
.doors strong{
  font-family:var(--f-display);font-weight:400;
  font-size:clamp(28px,3.4vw,42px);line-height:1.04;text-transform:uppercase;
  letter-spacing:.05em;color:var(--white);
}
.doors span{color:var(--sage);font-size:.95em}
.doors a:hover,.doors a:focus-visible{padding-left:14px}
.doors a:hover strong,.doors a:focus-visible strong{color:var(--gold)}

.closing{max-width:58ch;color:var(--sage);margin:38px 0 0;font-size:.98em}
.closing a{color:var(--white);border-bottom:1px solid var(--gold);text-decoration:none}

/* the author speaking in her own voice, set apart from the record */
.authornote{
  margin:clamp(48px,6vw,84px) 0 0;padding:clamp(28px,4vw,44px);
  max-width:70ch;background:var(--bg-2);border:1px solid var(--rule);
  position:relative;
}
.authornote::after{
  content:"";position:absolute;inset:8px;pointer-events:none;
  border:1px solid var(--rule-quiet);
}
.authornote h2{
  font-family:var(--f-body);font-weight:400;font-size:12px;
  letter-spacing:.28em;text-transform:uppercase;color:var(--gold);
  margin:0 0 22px;
}
.authornote p{margin:0 0 18px;color:var(--text);line-height:1.82}
.authornote p:first-of-type{
  font-family:var(--f-display);font-size:1.5em;line-height:1.32;
  color:var(--white);margin-bottom:22px;
}
.sig{
  font-family:var(--f-display);font-style:italic;font-size:1.5em;
  color:var(--gold);margin:26px 0 0!important;
}
.sig::before{
  content:"";display:block;width:44px;height:1px;background:var(--rule-strong);
  margin-bottom:16px;
}

/* the book line stops shouting in small caps */


/* the career as a chromatogram, wider than the reading measure */
/* .wrap > figure caps photographs at reading measure, and outranks a
   plain class selector, so the chart has to match its specificity */
.wrap > figure.chromo{max-width:none}
.chromo{margin:clamp(34px,5vw,52px) 0 0}

/* A phone gets a version with the labels running vertically, which fits a
   narrow screen without scrolling. Swapped by the source element above. */
.chromo .fig__box{background:transparent;border:0}
.chromo .fig__box::after{display:none}
.chromo img{width:100%;height:auto}
.chromo figcaption{max-width:66ch}

/* ---------- the record ---------- */
.record{list-style:none;margin:clamp(36px,5vw,60px) 0 0;padding:0}
.record li{
  display:grid;gap:8px 40px;padding:32px 0;
  border-top:1px solid var(--rule-quiet);
}
.record li:first-child{border-top:var(--trim) solid var(--rule)}
.record li:last-child{border-bottom:var(--trim) solid var(--rule)}
@media (min-width:740px){.record li{grid-template-columns:150px minmax(0,1fr)}}
.yr{
  font-family:var(--f-data);font-size:12px;letter-spacing:.12em;
  text-transform:uppercase;color:var(--gold);padding-top:8px;
}
.record h2{
  font-family:var(--f-display);font-weight:600;
  font-size:clamp(23px,2.6vw,30px);line-height:1.16;margin:0 0 10px;
  color:var(--white);letter-spacing:.01em;
}
.record p{margin:0;color:var(--text);max-width:60ch}
.record em{font-style:italic;color:var(--sage)}


/* a supporting photograph on a subject page, deliberately not full width */
.wrap > figure{max-width:62ch;margin:clamp(30px,4vw,44px) 0 0}

/* ---------- subject entry pages ---------- */
.subjectprose{max-width:64ch;margin:clamp(32px,4vw,48px) 0 0}
.subjectprose p{margin:0 0 22px;color:var(--text);line-height:1.82}
.subjectprose p:first-child{font-size:1.1em;color:var(--white)}

.facts{list-style:none;margin:clamp(32px,4vw,48px) 0 0;padding:0;max-width:68ch}
.facts li{
  position:relative;padding:20px 0 20px 34px;
  border-top:1px solid var(--rule-quiet);color:var(--text);line-height:1.74;
}
.facts li:first-child{border-top:var(--trim) solid var(--rule)}
.facts li:last-child{border-bottom:var(--trim) solid var(--rule)}
.facts li::before{
  content:"";position:absolute;left:0;top:32px;width:18px;height:1px;background:var(--gold);
}
.facts q{quotes:"\201C" "\201D";font-style:italic;color:var(--sage)}

.block__head{
  font-family:var(--f-body);font-weight:400;font-size:12px;
  letter-spacing:.28em;text-transform:uppercase;color:var(--gold);
  margin:clamp(42px,5vw,64px) 0 20px;display:flex;align-items:center;gap:16px;
}
.block__head::after{
  content:"";flex:1;height:1px;max-width:140px;
  background:linear-gradient(90deg,var(--rule-strong),transparent);
}
.wrong{margin:0;padding:0;max-width:68ch}
.wrong div{padding:24px 0;border-top:1px solid var(--rule-quiet)}
.wrong div:first-child{border-top:var(--trim) solid var(--rule)}
.wrong div:last-child{border-bottom:var(--trim) solid var(--rule)}
.wrong dt{
  font-family:var(--f-display);font-weight:600;font-size:22px;
  line-height:1.22;margin:0 0 12px;color:var(--white);
}
.wrong dd{margin:0;color:var(--text);font-size:.97em}

.inbook{
  max-width:64ch;margin:clamp(36px,4vw,52px) 0 0;padding:20px 0 20px 24px;
  border-left:2px solid var(--gold);color:var(--sage);font-size:.95em;
  font-style:italic;
}
.onward{
  list-style:none;margin:clamp(32px,4vw,48px) 0 0;padding:0;
  display:flex;flex-wrap:wrap;gap:12px 30px;
}
.onward a{
  font-family:var(--f-body);font-size:12.5px;letter-spacing:.16em;
  text-transform:uppercase;text-decoration:none;color:var(--sage);
  border-bottom:1px solid var(--rule);padding-bottom:4px;
}
.onward a:hover,.onward a:focus-visible{color:var(--gold);border-bottom-color:var(--gold)}

/* a small portrait beside the About text, so the author is a person */
.aboutgrid{display:grid;gap:clamp(24px,3vw,44px);margin-top:clamp(30px,4vw,48px)}
@media (min-width:900px){
  .aboutgrid{grid-template-columns:240px minmax(0,1fr);align-items:start}
  .aboutgrid .prose{margin-top:0}
}
.portrait{margin:0;max-width:240px}
.portrait .fig__box{border:1px solid var(--rule)}
.portrait .fig__box::after{inset:6px;border-color:rgba(255,255,255,.16)}
.portrait img{width:100%;display:block}

/* ---------- the questions index ---------- */
.qlist{
  list-style:none;margin:clamp(34px,5vw,56px) 0 0;padding:0;
  border-top:var(--trim) solid var(--rule);
}
.qlist li{border-bottom:1px solid var(--rule-quiet)}
.qlist li:last-child{border-bottom:var(--trim) solid var(--rule)}
.qlist a{display:block;padding:26px 0;text-decoration:none;transition:padding-left .25s ease}
.qlist a:hover,.qlist a:focus-visible{padding-left:14px}
.qlist strong{
  display:block;font-family:var(--f-display);font-weight:600;
  font-size:clamp(22px,2.6vw,28px);line-height:1.16;color:var(--white);
  margin-bottom:8px;
}
.qlist a:hover strong{color:var(--gold)}
.qlist span{display:block;color:var(--sage);max-width:70ch;font-size:.95em}

/* previous and next through the question set */
.qpager{
  display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;
  border-top:1px solid var(--rule-quiet);margin-top:clamp(32px,4vw,44px);
  padding-top:20px;
}
.qpager a{
  font-family:var(--f-body);font-size:12.5px;letter-spacing:.14em;
  text-transform:uppercase;text-decoration:none;color:var(--sage);
}
.qpager a:hover,.qpager a:focus-visible{color:var(--gold)}

/* a quiet last-reviewed line at the foot of the content */
.dateline{
  max-width:1160px;margin:clamp(40px,5vw,64px) auto 0;
  padding-inline:var(--pad);
}
.dateline span{
  font-family:var(--f-body);font-size:11.5px;letter-spacing:.16em;
  text-transform:uppercase;color:var(--text-3);
}

/* ---------- subject strip ---------- */
.subjects{border-top:var(--trim) solid var(--rule);margin-top:clamp(54px,7vw,92px);padding-top:34px}
.subjects__head{
  font-family:var(--f-body);font-weight:400;font-size:12px;
  letter-spacing:.28em;text-transform:uppercase;color:var(--gold);
  margin:0 0 12px;
}
.subjects__intro{margin:0 0 28px;color:var(--sage);font-size:.95em;max-width:60ch}
.subjects ul{
  list-style:none;margin:0;padding:0;display:grid;gap:1px;
  background:var(--rule-quiet);border:1px solid var(--rule);
}
@media (min-width:700px){.subjects ul{grid-template-columns:1fr 1fr}}
@media (min-width:1040px){.subjects ul{grid-template-columns:repeat(3,1fr)}}
.subjects li{background:var(--bg)}
.subjects a{display:block;padding:24px;text-decoration:none;height:100%;transition:background .2s}
.subjects a:hover,.subjects a:focus-visible{background:var(--bg-3)}
.subjects strong{
  display:block;font-family:var(--f-display);font-weight:600;font-size:22px;
  line-height:1.16;margin-bottom:9px;color:var(--white);
}
.subjects span{display:block;color:var(--sage);font-size:.89em;line-height:1.6}
.subjects a:hover strong{color:var(--gold)}

/* ---------- how he worked ---------- */
.method{border-top:var(--trim) solid var(--rule);margin-top:clamp(54px,7vw,92px);padding-top:34px}
.method__head{
  font-family:var(--f-body);font-weight:400;font-size:12px;
  letter-spacing:.28em;text-transform:uppercase;color:var(--gold);margin:0 0 16px;
}
.method__intro{margin:0 0 34px;max-width:60ch;color:var(--text)}
.method__grid{display:grid;gap:1px;background:var(--rule-quiet);border:1px solid var(--rule)}
@media (min-width:860px){.method__grid{grid-template-columns:1fr 1fr}}
.method__grid>div{background:var(--bg);padding:28px}
.method__grid h3{
  font-family:var(--f-display);font-weight:600;font-size:23px;
  line-height:1.16;margin:0 0 12px;color:var(--white);
}
.method__grid p{margin:0;color:var(--text);font-size:.95em;line-height:1.72}

/* ---------- corrections ---------- */
.corrections{list-style:none;margin:clamp(36px,5vw,60px) 0 0;padding:0}
.corrections li{padding:32px 0;border-top:1px solid var(--rule-quiet);max-width:70ch}
.corrections li:first-child{border-top:var(--trim) solid var(--rule)}
.corrections li:last-child{border-bottom:var(--trim) solid var(--rule)}
.claim{
  font-family:var(--f-display);font-weight:600;
  font-size:clamp(23px,2.6vw,30px);line-height:1.2;
  margin:0 0 16px;color:var(--white);
}
.claim span{
  display:block;font-family:var(--f-body);font-weight:400;font-size:11.5px;
  letter-spacing:.28em;text-transform:uppercase;color:var(--text-3);
  margin-bottom:12px;
}
.claim::after{
  content:"";display:block;width:56px;height:1px;background:var(--gold);margin-top:18px;
}
.fact{margin:0;color:var(--text)}
.src{
  font-family:var(--f-body);font-size:11.5px;letter-spacing:.22em;
  text-transform:uppercase;color:var(--gold);margin:18px 0 0;
}

/* ---------- prose ---------- */
.prose{max-width:var(--measure);margin-top:clamp(30px,4vw,48px)}
.prose p{margin:0 0 20px;color:var(--text)}
.prose h2{
  font-family:var(--f-display);font-weight:600;font-size:clamp(23px,2.6vw,29px);
  line-height:1.16;margin:46px 0 14px;color:var(--white);
}
.prose ul{margin:0 0 22px;padding-left:0;list-style:none;color:var(--text)}
.prose li{margin-bottom:12px;padding-left:24px;position:relative}
.prose li::before{
  content:"";position:absolute;left:0;top:14px;width:12px;height:1px;background:var(--gold);
}
.prose a{color:var(--white);text-decoration:none;border-bottom:1px solid var(--gold)}
.prose a:hover,.prose a:focus-visible{color:var(--gold)}
.prose em{font-style:italic}

.contact{
  border:1px solid var(--rule);background:var(--bg-2);
  padding:clamp(22px,3vw,34px);margin:38px 0 0;max-width:var(--measure);
  position:relative;
}
.contact::after{
  content:"";position:absolute;inset:7px;pointer-events:none;
  border:1px solid var(--rule-quiet);
}
.contact p{margin:0 0 14px;color:var(--sage);font-size:.95em}
.contact p:last-child{margin-bottom:0}
.contact a{
  font-family:var(--f-body);color:var(--white);letter-spacing:.04em;
  border-bottom:1px solid var(--gold);text-decoration:none;
}
.contact a:hover,.contact a:focus-visible{color:var(--gold)}

/* ---------- images ---------- */
.gallery{
  display:grid;gap:30px;margin:clamp(48px,6vw,80px) 0 0;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
}
.gallery figure{margin:0}
.fig__box{
  overflow:hidden;background:var(--bg-2);border:1px solid var(--rule);
  position:relative;
}
.fig__box::after{
  content:"";position:absolute;inset:8px;pointer-events:none;
  border:1px solid rgba(255,255,255,.14);
}
.fig__box picture{display:block}
/* an SVG diagram is drawn on the page ground, so it needs no inset frame */
.fig__box--svg{background:transparent;border:0}
.fig__box--svg::after{display:none}
.fig__box--svg img{width:100%;height:auto}
figure.second{margin-top:clamp(38px,5vw,56px)}
.fig__box img{width:100%;display:block}
figcaption{
  font-family:var(--f-body);font-size:12.5px;letter-spacing:.05em;
  color:var(--text-3);margin-top:14px;line-height:1.7;
}
figcaption b{color:var(--sage);font-weight:400}

/* the career collage at the head of the book page */
.collage{margin:clamp(32px,4vw,50px) 0 0}
.collage figcaption{max-width:66ch}

/* ---------- book line ---------- */
.bookline{border-top:var(--trim) solid var(--rule);margin-top:clamp(52px,7vw,96px);padding:30px 0 0}
.bookline p{
  font-family:var(--f-body);font-style:italic;font-size:1.02em;
  color:var(--sage);margin:0;max-width:58ch;line-height:1.7;
}
.bookline a{color:var(--sage);text-decoration:none}
.bookline a em{
  font-style:italic;color:var(--white);
  border-bottom:1px solid var(--gold);
}
.bookline a:hover,.bookline a:focus-visible{color:var(--white)}

/* ---------- footer ---------- */
footer{
  border-top:var(--trim) solid var(--rule);
  margin-top:clamp(56px,8vw,104px);padding:44px 0 68px;background:var(--bg-2);
}
.foot{display:grid;gap:32px}
@media (min-width:780px){.foot{grid-template-columns:1.6fr 1fr}}
.foot h2{
  font-family:var(--f-body);font-weight:400;font-size:11.5px;
  letter-spacing:.28em;text-transform:uppercase;color:var(--gold);margin:0 0 16px;
}
.foot ul{list-style:none;margin:0;padding:0}
.foot li{margin-bottom:10px}
.foot a{
  font-family:var(--f-body);font-size:13.5px;letter-spacing:.06em;
  text-decoration:none;color:var(--sage);
}
.foot a:hover,.foot a:focus-visible{color:var(--gold)}
.foot p{color:var(--sage);margin:0 0 12px;line-height:1.8;max-width:46ch;font-size:.94em}
.colophon{
  border-top:1px solid var(--rule-quiet);margin-top:36px;padding-top:24px;
  font-family:var(--f-body);font-size:12px;letter-spacing:.05em;color:var(--text-3);
}
.colophon p{margin:0 0 8px;color:var(--text-3)}
.colophon a{color:var(--sage);border-bottom:1px solid var(--rule);text-decoration:none}

@media (prefers-reduced-motion:no-preference){html{scroll-behavior:smooth}}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *{animation-duration:.001ms!important;transition-duration:.001ms!important}
}

@media print{
  .bar,.nav,.bookline,.subjects,footer{display:none}
  body{background:#fff;color:#000;font-size:11pt;background-image:none}
  h1,h2,h3{color:#000}
}
