/* clairespot.com — text-only stylesheet
   Deliberately minimal: no colour-dependent meaning, no layout tricks,
   readable with CSS off, readable with a screen reader, readable on a
   slow connection. */

* { box-sizing: border-box; }

html { color-scheme: light; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: #111111;
  background: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  padding: 28px 20px 90px;
  line-height: 1.6;
  font-size: 18px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  z-index: 10;
  text-decoration: none;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

nav.text-nav {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 14px;
  margin-bottom: 8px;
  font-size: 16px;
}
nav.text-nav a {
  margin-right: 16px;
  white-space: nowrap;
}

.site-note {
  font-size: 14px;
  color: #555555;
  margin: 10px 0 34px;
}

.identity-label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  color: #555555;
  margin-bottom: 4px;
}

h1 {
  font-size: 1.85em;
  margin: 0.2em 0 0.3em;
  line-height: 1.25;
}

h2 {
  font-size: 1.35em;
  margin-top: 2.4em;
  padding-top: 0.9em;
  border-top: 1px solid #dddddd;
}

h3 {
  font-size: 1.15em;
  margin-top: 2em;
  margin-bottom: 0.3em;
}

h4 {
  font-size: 0.95em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555555;
  margin-top: 1.3em;
  margin-bottom: 0.4em;
}

.meta {
  color: #555555;
  font-size: 0.92em;
  margin: 0.2em 0 1em;
}

.tagline {
  font-size: 1.08em;
}

blockquote {
  margin: 1.5em 0;
  padding-left: 1em;
  border-left: 3px solid #999999;
  font-style: italic;
  color: #333333;
}
blockquote cite {
  display: block;
  font-style: normal;
  font-size: 0.85em;
  margin-top: 0.4em;
  color: #666666;
}

ul, ol {
  padding-left: 1.3em;
}

.toc {
  font-size: 0.95em;
  margin: 1em 0 1.6em;
}

.project-block {
  margin: 2em 0 2.4em;
  padding-bottom: 2em;
  border-bottom: 1px solid #e5e5e5;
}
.project-block:last-child {
  border-bottom: none;
}

.project-block h3 a {
  text-decoration: none;
}

hr.divider {
  border: none;
  border-top: 2px solid #111111;
  margin: 3em 0;
}

footer {
  margin-top: 70px;
  padding-top: 18px;
  border-top: 1px solid #cccccc;
  font-size: 0.85em;
  color: #666666;
}

a { color: #0645ad; }
a:visited { color: #3b3070; }
a:focus { outline: 2px solid #0645ad; outline-offset: 2px; }

.back-link { display: inline-block; margin-top: 2.4em; }

/* Visually hidden but announced by screen readers — used to give
   repeated links ("Read →", "View project →") a distinct name when
   read out of context, e.g. via a screen reader's links list. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
