:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  background: #efede7;
  color: #171714;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #efede7;
  color: #171714;
}

a { color: inherit; }

.landing {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 48px;
}

.landing-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid #bdb8aa;
}

.landing-logo {
  width: 112px;
  height: 112px;
  object-fit: cover;
  flex: 0 0 auto;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8c7244;
}

.artist-name {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 400;
  line-height: 1.1;
}

.hero {
  padding: 52px 0 40px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 0.98;
}

.hero-meta {
  margin: 24px 0 0;
  font-size: clamp(1rem, 2.6vw, 1.2rem);
  line-height: 1.55;
}

.intro {
  max-width: 720px;
  margin: 0 0 36px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #4d4a43;
}

.links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 48px;
}

.cta {
  display: block;
  padding: 20px 22px;
  border: 1px solid #8c7244;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.35;
}

.cta-primary {
  background: #171714;
  border-color: #171714;
  color: #fff;
}

.cta small {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.72;
}

 .work-index {
  margin-top: 20px;
  padding-top: 28px;
  border-top: 1px solid #bdb8aa;
}

.work-index-intro {
  max-width: 680px;
  margin: 0 0 28px;
  line-height: 1.6;
  color: #4d4a43;
}

.perspective-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
}

.perspective-group {
  min-width: 0;
}

.perspective-group h3 {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #bdb8aa;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.perspective-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.perspective-group li + li {
  border-top: 1px solid rgba(189, 184, 170, 0.55);
}

 .perspective-group a {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  text-decoration: none;
}

.work-thumbnail {
  width: 64px;
  height: 52px;
  object-fit: cover;
  border: 1px solid rgba(140, 114, 68, 0.35);
  background: #e5e1d8;
}

.work-copy {
  min-width: 0;
}

.perspective-group a:hover strong,
.perspective-group a:focus-visible strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.perspective-group strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.35;
}

.perspective-group span {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  line-height: 1.35;
  color: #69645b;
}

.landing-footer {
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid #bdb8aa;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 0.86rem;
  color: #69645b;
}

.landing-footer a { text-underline-offset: 3px; }

@media (max-width: 640px) {
  .landing { width: min(100% - 24px, 920px); padding-top: 22px; }
  .landing-header { align-items: flex-start; gap: 14px; }
  .landing-logo { width: 86px; height: 86px; }
  .hero { padding-top: 38px; }
  .links,
  .perspective-grid { grid-template-columns: 1fr; }
}
