/* Minimal reset */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }

a {
  color: #0066cc;
}

/* Typography and layout — Plus Jakarta Sans: sleek sans-serif, supports ï, é, ö, á, X̂ */
body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fafafa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.logomark {
  width: 120px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand h1 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-header .tagline {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
}

.header-contact {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #666;
}
.header-contact:first-of-type {
  margin-top: 1rem;
}

main {
  flex: 1;
  padding: 2rem;
  max-width: 56rem;
  margin: 0 auto;
  width: 100%;
}

/* Section headings */
main section h2 {
  margin: 0 0 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
}

/* ----- Bio, CV, Artist Statement ----- */
.bio .placeholder,
.cv .placeholder,
.artist-statement .placeholder {
  color: #444;
}

.cv-categories p {
  margin: 0.5rem 0;
}

.cv .cv-list {
  margin: 0 0 1.25rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.cv .cv-list li {
  margin-bottom: 0.35rem;
}

.cv .cv-list a:hover {
  text-decoration: underline;
}

@media print {
  .cv .cv-list a {
    word-break: break-all;
  }
}

/* ----- Works: one per page in PDF ----- */
.section-intro {
  margin: 0 0 1.5rem;
  color: #555;
  font-size: 0.95rem;
}

.series-list-heading {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.series-list-chronological {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.series-list-chronological dt {
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0.15rem;
}

.series-list-chronological dt:first-child {
  margin-top: 0;
}

.series-list-chronological dd {
  margin: 0 0 0 1.5rem;
  color: #333;
}

.work-item {
  margin-bottom: 2rem;
}

.work-image {
  min-height: 200px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  margin-bottom: 0.75rem;
}

.work-image img,
.work-image video {
  max-width: 100%;
  height: auto;
  display: block;
}

.work-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.work-technique {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: #555;
}

.work-caption {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #555;
}

.work-link {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}


/* Placeholder text styling */
.placeholder {
  color: #666;
}

.placeholder code {
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
  background: #eee;
  padding: 0.15em 0.4em;
  border-radius: 3px;
}

/* Annexes */
.annexes .placeholder {
  color: #444;
}

.site-footer {
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #666;
  border-top: 1px solid #e0e0e0;
  background: #fff;
}
